e7d6e92ea7
Restore use_pub_sub to default True. Fix broker closed by mistake. Change-Id: Ibc370d401d233059f7cbe8e7d5b15136910c8be7
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
# Copyright 2015 Mirantis, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import logging
|
|
import sys
|
|
import time
|
|
|
|
from oslo_config import cfg
|
|
|
|
from oslo_messaging._drivers import impl_zmq
|
|
from oslo_messaging._drivers.zmq_driver.broker import zmq_broker
|
|
from oslo_messaging._executors import impl_pooledexecutor
|
|
|
|
CONF = cfg.CONF
|
|
CONF.register_opts(impl_zmq.zmq_opts)
|
|
CONF.register_opts(impl_pooledexecutor._pool_opts)
|
|
CONF.rpc_zmq_native = True
|
|
|
|
|
|
def main():
|
|
CONF(sys.argv[1:], project='oslo')
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
|
|
reactor = zmq_broker.ZmqBroker(CONF)
|
|
reactor.start()
|
|
|
|
while True:
|
|
time.sleep(1)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|