summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSatoshi Kobayashi <satoshi-k@stratosphere.co.jp>2014-07-16 16:31:45 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2014-07-17 15:04:26 +0900
commit39c0fc00f9169e056b4e25af923d127d61b0aa3c (patch)
tree6e596dcf5b0495a0d7d63b32f57da956d7944fb4
parent5eb2cdf2466ffaf5559a614bc09e341dc3d9ffb5 (diff)
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>
-rw-r--r--ryu/app/ws_topology.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/app/ws_topology.py b/ryu/app/ws_topology.py
index 3be88fe4..1d5fb828 100644
--- a/ryu/app/ws_topology.py
+++ b/ryu/app/ws_topology.py
@@ -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)