Skip to content

Commit

Permalink
fix message: we handle "info" not "hello"
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@5878 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Mar 21, 2014
1 parent 720fe40 commit 333705c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/server/proxy_instance_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def do_process_control_packet(self, proto, packet):
proto.send_now(("hello", {"version" : __version__}))
self.timeout_add(5*1000, self.send_disconnect, proto, "version sent")
return
self.send_disconnect(proto, "this socket only handles 'hello', 'version' and 'stop' requests")
self.send_disconnect(proto, "this socket only handles 'info', 'version' and 'stop' requests")

def send_disconnect(self, proto, reason):
log("send_disconnect(%s, %s)", proto, reason)
Expand Down

0 comments on commit 333705c

Please sign in to comment.