Apply for legacy framing too for safe measure

This commit is contained in:
coletdjnz 2024-05-18 18:24:27 +12:00
parent c2718e7ff5
commit 6dcc99ee4a
No known key found for this signature in database
GPG Key ID: 91984263BB39894A

View File

@ -47,9 +47,11 @@
# Disable apply_mask C implementation
# Seems to help reduce "Fatal Python error: Aborted" in CI
import websockets.frames
import websockets.utils
websockets.frames.apply_mask = websockets.utils.apply_mask
with contextlib.suppress(Exception):
import websockets.frames
import websockets.legacy.framing
import websockets.utils
websockets.frames.apply_mask = websockets.legacy.framing = websockets.utils.apply_mask
import websockets.sync.client
from websockets.uri import parse_uri