From 43a537fe12ebfa0e2aafcd0985cd3dee87809f87 Mon Sep 17 00:00:00 2001 From: FUJITA Tomonori Date: Fri, 28 Mar 2014 17:56:15 +0900 Subject: [PATCH] apgw: fixed secure_channel_state notification Signed-off-by: FUJITA Tomonori --- ryu/controller/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryu/controller/api.py b/ryu/controller/api.py index 7c818416..8b293a27 100644 --- a/ryu/controller/api.py +++ b/ryu/controller/api.py @@ -238,7 +238,7 @@ class RpcOFPManager(app_manager.RyuApp): self.logger.critical(_(log_msg)) notify_param = self._get_secure_channel_state_param() for peer in self._peers: - peer._endpoint.send_notification("state", [notify_param]) + peer._endpoint.send_notification("state", notify_param) @handler.set_ev_cls(ofp_event.EventOFPErrorMsg, handler.MAIN_DISPATCHER)