Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
coco
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
coco
Commits
b1beecd8
Commit
b1beecd8
authored
Sep 21, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] exception
parent
cbf8e8d0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
sftp.py
coco/sftp.py
+3
-4
No files found.
coco/sftp.py
View file @
b1beecd8
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment