We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 810ed9f commit be693acCopy full SHA for be693ac
src/replit_river/v2/session.py
@@ -1270,6 +1270,9 @@ async def _recv_from_ws(
1270
# is no @overrides in `websockets` to hint this.
1271
try:
1272
message = await ws.recv(decode=False)
1273
+ except ConnectionClosedOK as e:
1274
+ close_session(e)
1275
+ continue
1276
except ConnectionClosed:
1277
# This triggers a break in the inner loop so we can get back to
1278
# the outer loop.
0 commit comments