Title: [174364] trunk/Tools
Revision
174364
Author
a...@apple.com
Date
2014-10-06 13:58:26 -0700 (Mon, 06 Oct 2014)

Log Message

One more case of incorrect comparison in recordpatchevent.py
https://bugs.webkit.org/show_bug.cgi?id=137459

Reviewed by Tim Horton.

* QueueStatusServer/app.yaml:
* QueueStatusServer/loggers/recordpatchevent.py:
(RecordPatchEvent.started):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (174363 => 174364)


--- trunk/Tools/ChangeLog	2014-10-06 20:45:02 UTC (rev 174363)
+++ trunk/Tools/ChangeLog	2014-10-06 20:58:26 UTC (rev 174364)
@@ -1,5 +1,16 @@
 2014-10-06  Alexey Proskuryakov  <a...@apple.com>
 
+        One more case of incorrect comparison in recordpatchevent.py
+        https://bugs.webkit.org/show_bug.cgi?id=137459
+
+        Reviewed by Tim Horton.
+
+        * QueueStatusServer/app.yaml:
+        * QueueStatusServer/loggers/recordpatchevent.py:
+        (RecordPatchEvent.started):
+
+2014-10-06  Alexey Proskuryakov  <a...@apple.com>
+
         webkit-queues PatchLog is incorrect for patches that took less than a second
         https://bugs.webkit.org/show_bug.cgi?id=137453
 

Modified: trunk/Tools/QueueStatusServer/app.yaml (174363 => 174364)


--- trunk/Tools/QueueStatusServer/app.yaml	2014-10-06 20:45:02 UTC (rev 174363)
+++ trunk/Tools/QueueStatusServer/app.yaml	2014-10-06 20:58:26 UTC (rev 174364)
@@ -1,5 +1,5 @@
 application: webkit-queues
-version: 174357 # SVN revision of last major change
+version: 174364 # SVN revision of last major change
 runtime: python
 api_version: 1
 

Modified: trunk/Tools/QueueStatusServer/loggers/recordpatchevent.py (174363 => 174364)


--- trunk/Tools/QueueStatusServer/loggers/recordpatchevent.py	2014-10-06 20:45:02 UTC (rev 174363)
+++ trunk/Tools/QueueStatusServer/loggers/recordpatchevent.py	2014-10-06 20:58:26 UTC (rev 174364)
@@ -53,7 +53,7 @@
 
         # An existing wait_duration implies the patch had been started previously and is
         # being picked up again because it had expired, or was released.
-        if patch_log.wait_duration:
+        if patch_log.wait_duration is not None:
             patch_log.retry_count += 1
             patch_log.put()
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to