Changeset 228005 in webkit


Ignore:
Timestamp:
Feb 2, 2018 5:46:47 AM (6 years ago)
Author:
clopez@igalia.com
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):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/run-buildbot-test.py

    r225336 r228005  
    134134        if os.path.isfile(os.path.join(master_workdir, '.master-is-ready')):
    135135            return
    136         if master_ready_check_counter > 15:
    137             raise RuntimeError('ERROR: Aborting after waiting 15 seconds for the master to start.')
     136        if master_ready_check_counter > 60:
     137            raise RuntimeError('ERROR: Aborting after waiting 60 seconds for the master to start.')
    138138        sleep(1)
    139139        master_ready_check_counter += 1
  • trunk/Tools/ChangeLog

    r228004 r228005  
     12018-02-02  Carlos Alberto Lopez Perez  <clopez@igalia.com>
     2
     3        Start timeout for the run-buildbot-test script is too aggressive
     4        https://bugs.webkit.org/show_bug.cgi?id=182429
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        15 seconds is not enough waiting for the update database process
     9        to complete on a system backed with rotational HDDs. Raise it to 60.
     10
     11        * BuildSlaveSupport/build.webkit.org-config/run-buildbot-test.py:
     12        (wait_for_master_ready):
     13
    1142018-02-02  Carlos Alberto Lopez Perez  <clopez@igalia.com>
    215
Note: See TracChangeset for help on using the changeset viewer.