mirror of
https://github.com/faucetsdn/ryu.git
synced 2026-01-25 02:21:45 +01:00
topology/dumper: fix RyuApp.__init__ signature
so that this is at least instantiatable. Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp> Acked-by: YAMADA Hideki <yamada.hideki@po.ntts.co.jp> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
parent
a744128ef1
commit
29ada11eed
@ -30,8 +30,8 @@ class DiscoveryEventDumper(app_manager.RyuApp):
|
||||
''' This app dumps discovery events
|
||||
'''
|
||||
|
||||
def __init__(self):
|
||||
super(DiscoveryEventDumper, self).__init__()
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(DiscoveryEventDumper, self).__init__(*args, **kwargs)
|
||||
|
||||
# For testing when sync and async request.
|
||||
# self.threads.append(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user