Skip to content

Commit

Permalink
hotfix/disable binarize
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Sep 7, 2023
1 parent 0333c20 commit bfef608
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion hivemind_core/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,11 @@ def handle_handshake_message(self, message: HiveMessage,
elif client.pswd_handshake is not None and "envelope" in payload:
# while the access key is transmitted, the password never is
envelope = payload["envelope"]
client.binarize = payload.get("binarize", False)
# TODO - seems tornado never emits these, they never arrive in client
# closing the listener should futures were never awaited
# until this is debugged force to False
# client.binarize = payload.get("binarize", False)
client.binarize = False

payload["envelope"] = client.pswd_handshake.generate_handshake()

Expand Down

0 comments on commit bfef608

Please sign in to comment.