Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
98b6210c
Commit
98b6210c
authored
Mar 16, 2012
by
Vincent Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not send error on closed connection.
parent
300e2023
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
15 deletions
+20
-15
neo/lib/handler.py
neo/lib/handler.py
+20
-15
No files found.
neo/lib/handler.py
View file @
98b6210c
...
...
@@ -54,25 +54,30 @@ class EventHandler(object):
args
=
packet
.
decode
()
or
()
method
(
conn
,
*
args
,
**
kw
)
except
UnexpectedPacketError
,
e
:
self
.
__unexpectedPacket
(
conn
,
packet
,
*
e
.
args
)
if
not
conn
.
isClosed
():
self
.
__unexpectedPacket
(
conn
,
packet
,
*
e
.
args
)
except
PacketMalformedError
:
neo
.
lib
.
logging
.
error
(
'malformed packet from %r'
,
conn
)
conn
.
notify
(
Packets
.
Notify
(
'Malformed packet: %r'
%
(
packet
,
)))
conn
.
abort
()
# self.peerBroken(conn)
if
not
conn
.
isClosed
():
neo
.
lib
.
logging
.
error
(
'malformed packet from %r'
,
conn
)
conn
.
notify
(
Packets
.
Notify
(
'Malformed packet: %r'
%
(
packet
,
)))
conn
.
abort
()
# self.peerBroken(conn)
except
BrokenNodeDisallowedError
:
conn
.
answer
(
Errors
.
BrokenNode
(
'go away'
))
conn
.
abort
()
if
not
conn
.
isClosed
():
conn
.
answer
(
Errors
.
BrokenNode
(
'go away'
))
conn
.
abort
()
except
NotReadyError
,
message
:
if
not
message
.
args
:
message
=
'Retry Later'
message
=
str
(
message
)
conn
.
answer
(
Errors
.
NotReady
(
message
))
conn
.
abort
()
if
not
conn
.
isClosed
():
if
not
message
.
args
:
message
=
'Retry Later'
message
=
str
(
message
)
conn
.
answer
(
Errors
.
NotReady
(
message
))
conn
.
abort
()
except
ProtocolError
,
message
:
message
=
str
(
message
)
conn
.
answer
(
Errors
.
ProtocolError
(
message
))
conn
.
abort
()
if
not
conn
.
isClosed
():
message
=
str
(
message
)
conn
.
answer
(
Errors
.
ProtocolError
(
message
))
conn
.
abort
()
def
checkClusterName
(
self
,
name
):
# raise an exception if the given name mismatch the current cluster name
...
...
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