[server] fix documentation of ZMQ options harder stable
authorJulien Cristau <julien.cristau@logilab.fr>
Wed, 29 May 2013 11:41:39 +0200
branchstable
changeset 8993 82ffa4b68c9e
parent 8991 5238f62a430a
child 8994 df64cca71c36
[server] fix documentation of ZMQ options harder The syntax for zmq addresses is tcp://host:port, no zmqpickle involved.
server/serverconfig.py
--- a/server/serverconfig.py	Mon May 27 15:39:56 2013 +0200
+++ b/server/serverconfig.py	Wed May 29 11:41:39 2013 +0200
@@ -239,14 +239,14 @@
           {'type' : 'csv',
            'default' : None,
            'help': ('List of ZMQ addresses to subscribe to (requires pyzmq) '
-                    '(of the form `zmqpickle-tcp://<ipaddr>:<port>`)'),
+                    '(of the form `tcp://<ipaddr>:<port>`)'),
            'group': 'zmq', 'level': 1,
            }),
          ('zmq-address-pub',
           {'type' : 'string',
            'default' : None,
            'help': ('ZMQ address to use for publishing (requires pyzmq) '
-                    '(of the form `zmqpickle-tcp://<ipaddr>:<port>`)'),
+                    '(of the form `tcp://<ipaddr>:<port>`)'),
            'group': 'zmq', 'level': 1,
            }),
         ) + CubicWebConfiguration.options)