Browse Source

avoid infinite wait during channel encrpytion

pull/18/merge
Rossen Georgiev 9 years ago
parent
commit
6ed43fcd87
  1. 6
      steam/core/cm.py

6
steam/core/cm.py

@ -201,7 +201,11 @@ class CMClient(EventEmitter):
self.send_message(resp) self.send_message(resp)
msg = self.wait_event(EMsg.ChannelEncryptResult) try:
msg = self.wait_event(EMsg.ChannelEncryptResult, timeout=15)
except gevent.Timeout:
gevent.spawn(self.disconnect, True)
return
if msg.body.eresult != EResult.OK: if msg.body.eresult != EResult.OK:
logger.debug("Failed to secure channel: %s" % msg.body.eresult) logger.debug("Failed to secure channel: %s" % msg.body.eresult)

Loading…
Cancel
Save