Changeset 174357 in webkit
- Timestamp:
- Oct 6, 2014, 12:09:55 PM (11 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r174343 r174357 1 2014-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 1 14 2014-10-06 Csaba Osztrogonác <ossy@webkit.org> 2 15 -
trunk/Tools/QueueStatusServer/app.yaml
r174304 r174357 1 1 application: webkit-queues 2 version: 1743 04 # Bugzilla bug IDof last major change2 version: 174357 # SVN revision of last major change 3 3 runtime: python 4 4 api_version: 1 -
trunk/Tools/QueueStatusServer/loggers/recordpatchevent.py
r174291 r174357 76 76 return 77 77 78 if not patch_log.wait_duration:78 if patch_log.wait_duration is None: 79 79 WarningLog.record("patchlog wait duration missing", "In stopped event.", attachment_id, queue_name, bot_id) 80 80 return
Note:
See TracChangeset
for help on using the changeset viewer.