Skip to content

Commit

Permalink
Fix order
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenthebuilder committed Apr 19, 2024
1 parent 4aca18b commit 4185203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions replit_river/server_transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ async def establish_session(
error_msg = "Got invalid transport message, closing connection"
raise InvalidTransportMessageException(error_msg)
logging.debug("handshake success on server: %r", handshake_request)
transport_id = msg.from_
to_id = msg.to
transport_id = msg.to
to_id = msg.from_
instance_id = handshake_request.instanceId
try:
session = await self.get_or_create_session(
Expand Down

0 comments on commit 4185203

Please sign in to comment.