Temporary debug changes
This commit is contained in:
parent
520e235483
commit
fb44b33245
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ class WallabyClient:
|
|||
self.sock = ESock(socket.create_connection(host_port_pair), debug=debug)
|
||||
self.connected = True
|
||||
self.debug = debug
|
||||
self.sync = SyncClient(self.sock, "wallaby_testing", "w_sync")
|
||||
self.sync = SyncClient(self.sock, sys.argv[1], "w_sync")
|
||||
self.routes = {"wallaby_control" : WallabyControl(), "w_sync" : self.sync}
|
||||
|
||||
|
||||
|
@ -62,4 +62,4 @@ wallaby_client = WallabyClient(("127.0.0.1", 3077), debug=True)
|
|||
try:
|
||||
wallaby_client.start()
|
||||
except KeyboardInterrupt:
|
||||
wallaby_client.stop()
|
||||
wallaby_client.stop()
|
||||
|
|
Reference in a new issue