Merge "Fix unused 'timeout' in OvsdbMonitor start"

This commit is contained in:
Zuul 2021-02-03 02:04:25 +00:00 committed by Gerrit Code Review
commit 00d5f7f2ab
1 changed files with 2 additions and 2 deletions

View File

@ -62,10 +62,10 @@ class OvsdbMonitor(async_process.AsyncProcess):
self.new_events = {'added': [], 'removed': [], 'modified': []}
return events
def start(self, block=False, timeout=5):
def start(self, block=False, timeout=60):
super(OvsdbMonitor, self).start()
if block:
utils.wait_until_true(self.is_active)
utils.wait_until_true(self.is_active, timeout=timeout)
class SimpleInterfaceMonitor(OvsdbMonitor):