Changeset 174357 in webkit


Ignore:
Timestamp:
Oct 6, 2014 12:09:55 PM (10 years ago)
Author:
ap@apple.com
Message:

webkit-queues PatchLog is incorrect for patches that took less than a second
https://bugs.webkit.org/show_bug.cgi?id=137453

Reviewed by Tim Horton.

  • QueueStatusServer/app.yaml: Updated app version.
  • QueueStatusServer/loggers/recordpatchevent.py: (RecordPatchEvent.stopped):

Don't bail out for patches that took 0 seconds to process (as frequently happens
when a patch is obsolete).

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r174343 r174357  
     12014-10-06  Alexey Proskuryakov  <ap@apple.com>
     2
     3        webkit-queues PatchLog is incorrect for patches that took less than a second
     4        https://bugs.webkit.org/show_bug.cgi?id=137453
     5
     6        Reviewed by Tim Horton.
     7
     8        * QueueStatusServer/app.yaml: Updated app version.
     9
     10        * QueueStatusServer/loggers/recordpatchevent.py: (RecordPatchEvent.stopped):
     11        Don't bail out for patches that took 0 seconds to process (as frequently happens
     12        when a patch is obsolete).
     13
    1142014-10-06  Csaba Osztrogonác  <ossy@webkit.org>
    215
  • trunk/Tools/QueueStatusServer/app.yaml

    r174304 r174357  
    11application: webkit-queues
    2 version: 174304 # Bugzilla bug ID of last major change
     2version: 174357 # SVN revision of last major change
    33runtime: python
    44api_version: 1
  • trunk/Tools/QueueStatusServer/loggers/recordpatchevent.py

    r174291 r174357  
    7676            return
    7777
    78         if not patch_log.wait_duration:
     78        if patch_log.wait_duration is None:
    7979            WarningLog.record("patchlog wait duration missing", "In stopped event.", attachment_id, queue_name, bot_id)
    8080            return
Note: See TracChangeset for help on using the changeset viewer.