Merge "Add timeout param for execution_thread.join"
This commit is contained in:
commit
7164b4220b
@ -89,8 +89,8 @@ class AsyncCommandResult(BaseCommandResult):
|
||||
self.execution_thread.start()
|
||||
return self
|
||||
|
||||
def join(self):
|
||||
self.execution_thread.join()
|
||||
def join(self, timeout=None):
|
||||
self.execution_thread.join(timeout)
|
||||
return self
|
||||
|
||||
def is_done(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user