diff options
author | Yoshihiro Kaneko <ykaneko0929@gmail.com> | 2012-09-12 12:13:34 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2012-09-12 12:37:59 +0900 |
commit | 8f28a48a2a4769a761ebf2e54d4a69f9fc5d7e99 (patch) | |
tree | fd6e5df1cd68dfc0be36ba4286846dea76ac7396 | |
parent | d26cbddf26193f12193e4e009df92ecd2e814677 (diff) |
app/simple_isolation: update handler registration
This patch only removes unnecessary methods that didn't accord with
the library changed at ae0253a36c8787b645d33eb109636ca009d65f96.
Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/app/simple_isolation.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ryu/app/simple_isolation.py b/ryu/app/simple_isolation.py index f6ab4da0..ff8e1e45 100644 --- a/ryu/app/simple_isolation.py +++ b/ryu/app/simple_isolation.py @@ -61,10 +61,6 @@ class SimpleIsolation(app_manager.RyuApp): self.mac2port.dpid_add(ev.msg.datapath_id) self.nw.add_datapath(ev.msg) - @set_ev_cls(ofp_event.EventOFPBarrierReply) - def barrier_reply_handler(self, ev): - LOG.debug('barrier reply ev %s msg %s', ev, ev.msg) - @staticmethod def _modflow_and_send_packet(msg, src, dst, actions): datapath = msg.datapath @@ -351,7 +347,3 @@ class SimpleIsolation(app_manager.RyuApp): self._port_del(ev) else: assert reason == ofproto.OFPPR_MODIFY - - @set_ev_cls(ofp_event.EventOFPBarrierReply, MAIN_DISPATCHER) - def barrier_replay_handler(self, ev): - pass |