Title: [163222] trunk/Tools
Revision
163222
Author
[email protected]
Date
2014-01-31 17:14:47 -0800 (Fri, 31 Jan 2014)

Log Message

Attempt to fix Production Dashboard after <http://trac.webkit.org/changeset/163213>
(https://bugs.webkit.org/show_bug.cgi?id=127849)

Reviewed by David Farler.

Pass credentials when querying build bot iteration.

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

Modified Paths

Diff

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


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotIteration.js	2014-02-01 00:57:33 UTC (rev 163221)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotIteration.js	2014-02-01 01:14:47 UTC (rev 163222)
@@ -271,7 +271,7 @@
             this.queue.sortIterations();
 
             this.dispatchEventToListeners(BuildbotIteration.Event.Updated);
-        }.bind(this));
+        }.bind(this), {withCredentials: this.queue.buildbot.needsAuthentication});
     },
 
     loadLayoutTestResults: function(callback)
@@ -355,6 +355,6 @@
         function(data) {
             console.log(data.error);
             callback();
-        }, {jsonpCallbackName: "ADD_RESULTS"});
+        }, {jsonpCallbackName: "ADD_RESULTS", withCredentials: this.queue.buildbot.needsAuthentication});
     }
 };

Modified: trunk/Tools/ChangeLog (163221 => 163222)


--- trunk/Tools/ChangeLog	2014-02-01 00:57:33 UTC (rev 163221)
+++ trunk/Tools/ChangeLog	2014-02-01 01:14:47 UTC (rev 163222)
@@ -1,3 +1,16 @@
+2014-01-31  Daniel Bates  <[email protected]>
+
+        Attempt to fix Production Dashboard after <http://trac.webkit.org/changeset/163213>
+        (https://bugs.webkit.org/show_bug.cgi?id=127849)
+
+        Reviewed by David Farler.
+
+        Pass credentials when querying build bot iteration. 
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotIteration.js:
+        (BuildbotIteration.prototype.update):
+        (BuildbotIteration.prototype.loadLayoutTestResults):
+
 2014-01-31  Anders Carlsson  <[email protected]>
 
         Fix iOS build.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to