Merge "[zmq] Fix slow down"

This commit is contained in:
Jenkins 2016-01-31 12:12:58 +00:00 committed by Gerrit Code Review
commit 11d7c44a36
2 changed files with 3 additions and 4 deletions

View File

@ -12,7 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
import contextlib
import logging
import sys
import time
@ -33,7 +32,7 @@ def main():
CONF(sys.argv[1:], project='oslo')
logging.basicConfig(level=logging.DEBUG)
with contextlib.closing(zmq_broker.ZmqBroker(CONF)) as reactor:
reactor = zmq_broker.ZmqBroker(CONF)
reactor.start()
while True:

View File

@ -70,7 +70,7 @@ zmq_opts = [
help='Expiration timeout in seconds of a name service record '
'about existing target ( < 0 means no timeout).'),
cfg.BoolOpt('use_pub_sub', default=False,
cfg.BoolOpt('use_pub_sub', default=True,
help='Use PUB/SUB pattern for fanout methods. '
'PUB/SUB always uses proxy.'),