Tech debt - increase test timeouts to remove intermittant test failures (#3146)
This commit is contained in:
parent
1b80b0a810
commit
bed769a387
2 changed files with 5 additions and 4 deletions
|
|
@ -443,8 +443,8 @@ class Job(threading.Thread, BaseModel):
|
|||
now = datetime.datetime.now()
|
||||
i = 1
|
||||
while container.status == "running" and not self.stop:
|
||||
time.sleep(0.15)
|
||||
if i % 10 == 0:
|
||||
time.sleep(0.2)
|
||||
if i % 5 == 0:
|
||||
logs_stderr.extend(
|
||||
container.logs(
|
||||
stdout=False,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue