From 5f19a4887209fc6f59cd99d7f1ec5017fc1a1678 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Thu, 5 May 2016 00:18:39 +0000 Subject: [PATCH] Fix protocol from example --- client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client.py b/client/client.py index 21518b4..41070ce 100755 --- a/client/client.py +++ b/client/client.py @@ -68,7 +68,7 @@ def main(): 'certfile': FLAGS.https_client_cert, 'ca_certs': FLAGS.https_ca_cert, } - client = Client('wss://%s/ws/slave' % FLAGS.server, protocols=['http-only', 'chat'], ssl_options=ssl_options) + client = Client('wss://%s/ws/slave' % FLAGS.server, protocols=['iconograph-slave'], ssl_options=ssl_options) client.Loop()