Merge "Increase ovsdb_monitor.SimpleInterfaceMonitor start timeout"
This commit is contained in:
commit
2ab25d31c2
@ -69,6 +69,10 @@ class SimpleInterfaceMonitor(OvsdbMonitor):
|
||||
respawn_interval=respawn_interval,
|
||||
)
|
||||
self.data_received = False
|
||||
if respawn_interval:
|
||||
self._default_timeout = respawn_interval / 2
|
||||
else:
|
||||
self._default_timeout = 10
|
||||
|
||||
@property
|
||||
def is_active(self):
|
||||
@ -87,7 +91,8 @@ class SimpleInterfaceMonitor(OvsdbMonitor):
|
||||
"""
|
||||
return bool(list(self.iter_stdout())) or not self.is_active
|
||||
|
||||
def start(self, block=False, timeout=5):
|
||||
def start(self, block=False, timeout=None):
|
||||
timeout = timeout or self._default_timeout
|
||||
super(SimpleInterfaceMonitor, self).start()
|
||||
if block:
|
||||
eventlet.timeout.Timeout(timeout)
|
||||
|
Loading…
Reference in New Issue
Block a user