# HG changeset patch # User Julien Cristau # Date 1369820499 -7200 # Node ID 82ffa4b68c9e8ed71ad96c35f0f885d2a25c8194 # Parent 5238f62a430ad24d1511b947267a061bc34459e3 [server] fix documentation of ZMQ options harder The syntax for zmq addresses is tcp://host:port, no zmqpickle involved. diff -r 5238f62a430a -r 82ffa4b68c9e 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://:`)'), + '(of the form `tcp://:`)'), '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://:`)'), + '(of the form `tcp://:`)'), 'group': 'zmq', 'level': 1, }), ) + CubicWebConfiguration.options)