Merge "Add timeout param for execution_thread.join"

This commit is contained in:
Jenkins 2014-04-04 20:51:03 +00:00 committed by Gerrit Code Review
commit 7164b4220b

View File

@ -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):