Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

node_integration_tests: lowered the comp.tasks timeout from 60 to 2 minutes #4621

Merged
merged 2 commits into from
Aug 23, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/node_integration_tests/playbooks/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def on_success(result):
new_tasks = tasks - self.known_tasks
if len(new_tasks) != 1:
print("Cannot find the new task ({})".format(new_tasks))
time.sleep(30)
time.sleep(3)
else:
self.task_id = list(new_tasks)[0]
print("Task id: {}".format(self.task_id))
Expand Down