Title: [161103] trunk/Tools
Revision
161103
Author
[email protected]
Date
2013-12-27 10:08:07 -0800 (Fri, 27 Dec 2013)

Log Message

Display EWS status on bot watcher's dashboard
https://bugs.webkit.org/show_bug.cgi?id=126224

Silence spurious exceptions, no visible behavior change.

* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/EWSQueue.js:
(EWSQueue.prototype.update): Removed code that was only needed for an experimental
feature that wasn't landed.

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/EWSQueue.js (161102 => 161103)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/EWSQueue.js	2013-12-27 17:06:40 UTC (rev 161102)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/EWSQueue.js	2013-12-27 18:08:07 UTC (rev 161103)
@@ -68,7 +68,7 @@
     {
         JSON.load(this.baseURL, function(data) {
             var newPatchCount = data.queue.length;
-            if (this._patchCount == newPatchCount && this._latestMessageTime == newLatestMessageTime)
+            if (this._patchCount == newPatchCount)
                 return;
             this._patchCount = newPatchCount;
 

Modified: trunk/Tools/ChangeLog (161102 => 161103)


--- trunk/Tools/ChangeLog	2013-12-27 17:06:40 UTC (rev 161102)
+++ trunk/Tools/ChangeLog	2013-12-27 18:08:07 UTC (rev 161103)
@@ -1,3 +1,14 @@
+2013-12-27  Alexey Proskuryakov  <[email protected]>
+
+        Display EWS status on bot watcher's dashboard
+        https://bugs.webkit.org/show_bug.cgi?id=126224
+
+        Silence spurious exceptions, no visible behavior change.
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/EWSQueue.js:
+        (EWSQueue.prototype.update): Removed code that was only needed for an experimental
+        feature that wasn't landed.
+
 2013-12-26  Alexey Proskuryakov  <[email protected]>
 
         Display EWS status on bot watcher's dashboard
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to