Commit 901e5655 authored by Anthony Young's avatar Anthony Young

Update to fix trunk nova issue with rpc library

 * rpc flags now must be manually initialized.
parent 483157f8
......@@ -67,6 +67,13 @@ opts = [
FLAGS = flags.FLAGS
FLAGS.register_cli_opts(opts)
# As of nova commit 0b11668e64450039dc071a4a123abd02206f865f we must
# manually register the rpc library
try:
rpc.register_opts(FLAGS)
except:
pass
class NovaWebSocketProxy(wsproxy.WebSocketProxy):
def __init__(self, *args, **kwargs):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment