diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/applications/websockets.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/unit/applications/websockets.py b/test/unit/applications/websockets.py index 0a343875..47eebd9c 100644 --- a/test/unit/applications/websockets.py +++ b/test/unit/applications/websockets.py @@ -180,7 +180,10 @@ class TestApplicationWebsocket(TestApplicationProto): frame_len = len(frame) while pos < frame_len: end = min(pos + chopsize, frame_len) - sock.sendall(frame[pos:end]) + try: + sock.sendall(frame[pos:end]) + except BrokenPipeError: + end = frame_len pos = end def message(self, sock, type, message, fragmention_size=None, **kwargs): |