ws_topology: fix typo

No spec change. The issue occurs at the time of "one_way=True"

Signed-off-by: Satoshi Kobayashi <satoshi-k@stratosphere.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
Satoshi Kobayashi 2014-07-16 16:31:45 +09:00 committed by FUJITA Tomonori
parent 5eb2cdf246
commit 39c0fc00f9

View File

@ -85,7 +85,7 @@ class WebSocketTopology(app_manager.RyuApp):
def _rpc_broadcall(self, func_name, msg):
for rpc_client in self.rpc_clients:
# NOTE: Although broadcasting is desired,
# RPCClient#get_proxy(one_way=False) does not work well
# RPCClient#get_proxy(one_way=True) does not work well
rpc_server = rpc_client.get_proxy()
try:
getattr(rpc_server, func_name)(msg)