Title: [163267] trunk/Tools
Revision
163267
Author
[email protected]
Date
2014-02-02 12:29:50 -0800 (Sun, 02 Feb 2014)

Log Message

Attempt to fix production dashboard after <http://trac.webkit.org/changeset/163222>

Actually pass option dictionary to JSON.load(); JSON.load() takes four arguments with the
last-most argument being the option dictionary.

* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotIteration.js:
(BuildbotIteration.prototype.update):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotIteration.js (163266 => 163267)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotIteration.js	2014-02-02 19:55:25 UTC (rev 163266)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotIteration.js	2014-02-02 20:29:50 UTC (rev 163267)
@@ -271,7 +271,7 @@
             this.queue.sortIterations();
 
             this.dispatchEventToListeners(BuildbotIteration.Event.Updated);
-        }.bind(this), {withCredentials: this.queue.buildbot.needsAuthentication});
+        }.bind(this), null, {withCredentials: this.queue.buildbot.needsAuthentication});
     },
 
     loadLayoutTestResults: function(callback)

Modified: trunk/Tools/ChangeLog (163266 => 163267)


--- trunk/Tools/ChangeLog	2014-02-02 19:55:25 UTC (rev 163266)
+++ trunk/Tools/ChangeLog	2014-02-02 20:29:50 UTC (rev 163267)
@@ -1,3 +1,13 @@
+2014-02-02  Daniel Bates  <[email protected]>
+
+        Attempt to fix production dashboard after <http://trac.webkit.org/changeset/163222>
+
+        Actually pass option dictionary to JSON.load(); JSON.load() takes four arguments with the
+        last-most argument being the option dictionary.
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotIteration.js:
+        (BuildbotIteration.prototype.update):
+
 2014-02-01  Filip Pizlo  <[email protected]>
 
         JSC profiler's stub info profiling support should work again
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to