diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2019-09-02 14:55:00 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2019-09-02 14:55:00 +0300 |
commit | 70e808040dab5013654ed1156d34bac3d36c263c (patch) | |
tree | 6c7806d916f57e57e922fba9ae2d2d193d89a504 /test/unit/applications/websockets.py | |
parent | cb36616132434853707714cb548f03080950c08f (diff) | |
download | unit-70e808040dab5013654ed1156d34bac3d36c263c.tar.gz unit-70e808040dab5013654ed1156d34bac3d36c263c.tar.bz2 |
Tests: prevented writing non-chopped frames to the closed socket.
Diffstat (limited to '')
-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 47eebd9c..3553af6e 100644 --- a/test/unit/applications/websockets.py +++ b/test/unit/applications/websockets.py @@ -173,7 +173,10 @@ class TestApplicationWebsocket(TestApplicationProto): frame = self.frame_to_send(*args, **kwargs) if chopsize is None: - sock.sendall(frame) + try: + sock.sendall(frame) + except BrokenPipeError: + pass else: pos = 0 |