Skip to content

Commit 87aaba8

Browse files
REVERTME
1 parent cc7ad83 commit 87aaba8

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

src/replit_river/v2/session.py

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1104,11 +1104,11 @@ async def _serve(
11041104
message = await ws.recv(decode=False)
11051105
try:
11061106
msg = parse_transport_msg(message)
1107-
logger.debug(
1108-
"[%s] got a message %r",
1109-
transport_id,
1110-
msg,
1111-
)
1107+
# logger.debug(
1108+
# "[%s] got a message %r",
1109+
# transport_id,
1110+
# msg,
1111+
# )
11121112

11131113
if msg.controlFlags & STREAM_OPEN_BIT != 0:
11141114
raise InvalidMessageException(
@@ -1131,6 +1131,13 @@ async def _serve(
11311131
case other:
11321132
assert_never(other)
11331133

1134+
# TODO: Delete me
1135+
logger.debug(
1136+
"[%s] got a message %r",
1137+
transport_id,
1138+
msg,
1139+
)
1140+
11341141
reset_session_close_countdown()
11351142

11361143
# Shortcut to avoid processing ack packets

0 commit comments

Comments
 (0)