From 817cb0c8abefcbeb841331c6dc864a9566ccf8a5 Mon Sep 17 00:00:00 2001 From: Clint Byrum <clint@fewbar.com> Date: Mon, 4 Jan 2016 16:01:22 -0800 Subject: [PATCH] Fix formatting of code blocks in zmq docs They were mostly missing the preceding :: to make them appear as raw text in generated docs. Change-Id: I00ac461b13b75c4eef9961e7350fcd90394cdb77 --- doc/source/zmq_driver.rst | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/source/zmq_driver.rst b/doc/source/zmq_driver.rst index da4d0abc5..771863abe 100644 --- a/doc/source/zmq_driver.rst +++ b/doc/source/zmq_driver.rst @@ -90,7 +90,7 @@ Enabling (mandatory) To enable the driver, in the section [DEFAULT] of the conf file, the 'rpc_backend' flag must be set to 'zmq' and the 'rpc_zmq_host' flag -must be set to the hostname of the current node. +must be set to the hostname of the current node. :: [DEFAULT] rpc_backend = zmq @@ -113,14 +113,16 @@ RedisMatchMaker: loads the hash table from a remote Redis server, supports dynamic host/topic registrations, host expiration, and hooks for consuming applications to acknowledge or neg-acknowledge topic.host service availability. -To set the MatchMaker class, use option 'rpc_zmq_matchmaker' in [DEFAULT]. +To set the MatchMaker class, use option 'rpc_zmq_matchmaker' in [DEFAULT]. :: rpc_zmq_matchmaker = dummy - or + +or:: + rpc_zmq_matchmaker = redis To specify the Redis server for RedisMatchMaker, use options in -[matchmaker_redis] of each project. +[matchmaker_redis] of each project. :: [matchmaker_redis] host = 127.0.0.1