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
71c84880
Commit
71c84880
authored
Dec 26, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 吸怪异常捕捉
parent
50f54aa7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
models.py
coco/models.py
+2
-2
No files found.
coco/models.py
View file @
71c84880
...
...
@@ -125,8 +125,8 @@ class Client(object):
def
send
(
self
,
b
):
try
:
return
self
.
chan
.
send
(
b
)
except
(
OSError
,
EOFError
)
as
e
:
logger
.
error
(
'Send to client
<{}>
error: {}'
.
format
(
self
,
e
))
except
(
OSError
,
EOFError
,
socket
.
error
)
as
e
:
logger
.
error
(
'Send to client
{}
error: {}'
.
format
(
self
,
e
))
return
0
def
send_unicode
(
self
,
s
):
...
...
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