227 }), |
227 }), |
228 # zmq services config |
228 # zmq services config |
229 ('zmq-repository-address', |
229 ('zmq-repository-address', |
230 {'type' : 'string', |
230 {'type' : 'string', |
231 'default': None, |
231 'default': None, |
232 'help': 'ZMQ URI on which the repository will be bound to.', |
232 'help': ('ZMQ URI on which the repository will be bound ' |
|
233 'to (of the form `zmqpickle-tcp://<ipaddr><port>`).'), |
233 'group': 'zmq', 'level': 3, |
234 'group': 'zmq', 'level': 3, |
234 }), |
235 }), |
235 ('zmq-address-sub', |
236 ('zmq-address-sub', |
236 {'type' : 'csv', |
237 {'type' : 'csv', |
237 'default' : None, |
238 'default' : None, |
238 'help': ('List of ZMQ addresses to subscribe to (requires pyzmq)'), |
239 'help': ('List of ZMQ addresses to subscribe to (requires pyzmq) ' |
|
240 '(of the form `zmqpickle-tcp://<ipaddr><port>`)'), |
239 'group': 'zmq', 'level': 1, |
241 'group': 'zmq', 'level': 1, |
240 }), |
242 }), |
241 ('zmq-address-pub', |
243 ('zmq-address-pub', |
242 {'type' : 'string', |
244 {'type' : 'string', |
243 'default' : None, |
245 'default' : None, |
244 'help': ('ZMQ address to use for publishing (requires pyzmq)'), |
246 'help': ('ZMQ address to use for publishing (requires pyzmq) ' |
|
247 '(of the form `zmqpickle-tcp://<ipaddr><port>`)'), |
245 'group': 'zmq', 'level': 1, |
248 'group': 'zmq', 'level': 1, |
246 }), |
249 }), |
247 ) + CubicWebConfiguration.options) |
250 ) + CubicWebConfiguration.options) |
248 |
251 |
249 # should we init the connections pool (eg connect to sources). This is |
252 # should we init the connections pool (eg connect to sources). This is |