Commit 4003d055 authored by Rafael Monnerat's avatar Rafael Monnerat

Delay a bit longer between the runs queries

  There is no need to be faster them 2 minutes between the queries.
parent b5cb5a12
...@@ -252,7 +252,7 @@ def main(): ...@@ -252,7 +252,7 @@ def main():
(test_suite['test_suite_title'], ','.join(full_revision_list))) (test_suite['test_suite_title'], ','.join(full_revision_list)))
continue continue
test_result.watcher_period = 5 #120 test_result.watcher_period = 120
assert test_result is not None assert test_result is not None
if log_file is not None: if log_file is not None:
...@@ -394,6 +394,8 @@ def main(): ...@@ -394,6 +394,8 @@ def main():
if not test_result.isAlive(): if not test_result.isAlive():
for _, tester, computer_id in running_test_dict.itervalues(): for _, tester, computer_id in running_test_dict.itervalues():
tester.teardown() tester.teardown()
time.sleep(300)
finally: finally:
if pidfile: if pidfile:
setFinished(pidfile) setFinished(pidfile)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment