Title: [228005] trunk/Tools
- Revision
- 228005
- Author
- [email protected]
- Date
- 2018-02-02 05:46:47 -0800 (Fri, 02 Feb 2018)
Log Message
Start timeout for the run-buildbot-test script is too aggressive
https://bugs.webkit.org/show_bug.cgi?id=182429
Reviewed by Carlos Garcia Campos.
15 seconds is not enough waiting for the update database process
to complete on a system backed with rotational HDDs. Raise it to 60.
* BuildSlaveSupport/build.webkit.org-config/run-buildbot-test.py:
(wait_for_master_ready):
Modified Paths
Diff
Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/run-buildbot-test.py (228004 => 228005)
--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/run-buildbot-test.py 2018-02-02 12:36:16 UTC (rev 228004)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/run-buildbot-test.py 2018-02-02 13:46:47 UTC (rev 228005)
@@ -133,8 +133,8 @@
while True:
if os.path.isfile(os.path.join(master_workdir, '.master-is-ready')):
return
- if master_ready_check_counter > 15:
- raise RuntimeError('ERROR: Aborting after waiting 15 seconds for the master to start.')
+ if master_ready_check_counter > 60:
+ raise RuntimeError('ERROR: Aborting after waiting 60 seconds for the master to start.')
sleep(1)
master_ready_check_counter += 1
Modified: trunk/Tools/ChangeLog (228004 => 228005)
--- trunk/Tools/ChangeLog 2018-02-02 12:36:16 UTC (rev 228004)
+++ trunk/Tools/ChangeLog 2018-02-02 13:46:47 UTC (rev 228005)
@@ -1,5 +1,18 @@
2018-02-02 Carlos Alberto Lopez Perez <[email protected]>
+ Start timeout for the run-buildbot-test script is too aggressive
+ https://bugs.webkit.org/show_bug.cgi?id=182429
+
+ Reviewed by Carlos Garcia Campos.
+
+ 15 seconds is not enough waiting for the update database process
+ to complete on a system backed with rotational HDDs. Raise it to 60.
+
+ * BuildSlaveSupport/build.webkit.org-config/run-buildbot-test.py:
+ (wait_for_master_ready):
+
+2018-02-02 Carlos Alberto Lopez Perez <[email protected]>
+
re-add ARM JSCOnly bots on buildbot waterfall
https://bugs.webkit.org/show_bug.cgi?id=182428
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes