Commit b1beecd8 authored by ibuler's avatar ibuler

[Update] exception

parent cbf8e8d0
...@@ -3,7 +3,6 @@ import paramiko ...@@ -3,7 +3,6 @@ import paramiko
import time import time
from datetime import datetime from datetime import datetime
from functools import wraps from functools import wraps
import traceback
from paramiko.sftp import SFTP_PERMISSION_DENIED, SFTP_NO_SUCH_FILE, \ from paramiko.sftp import SFTP_PERMISSION_DENIED, SFTP_NO_SUCH_FILE, \
SFTP_FAILURE, SFTP_EOF, SFTP_CONNECTION_LOST SFTP_FAILURE, SFTP_EOF, SFTP_CONNECTION_LOST
...@@ -35,9 +34,9 @@ def convert_error(func): ...@@ -35,9 +34,9 @@ def convert_error(func):
except EOFError as e: except EOFError as e:
error = e error = e
response = SFTP_EOF response = SFTP_EOF
# except Exception as e: except Exception as e:
# error = e error = e
# response = SFTP_FAILURE response = SFTP_FAILURE
finally: finally:
if isinstance(error, Exception): if isinstance(error, Exception):
logger.error(error) logger.error(error)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment