Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1492)

Unified Diff: appengine/swarming/elements/res/imp/tasklist/task-list-data.html

Issue 2366663003: Use non-proxied links (Closed) Base URL: git@github.com:luci/luci-py@manual-add
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/swarming/elements/res/imp/tasklist/task-list-data.html
diff --git a/appengine/swarming/elements/res/imp/tasklist/task-list-data.html b/appengine/swarming/elements/res/imp/tasklist/task-list-data.html
index 7d72fb55d4f0a9e8c9fc81c429ecbb0f89ca660a..23751da3f2206d84295efefb1857bd4ca9d20cbc 100644
--- a/appengine/swarming/elements/res/imp/tasklist/task-list-data.html
+++ b/appengine/swarming/elements/res/imp/tasklist/task-list-data.html
@@ -113,9 +113,9 @@
},
signIn: function(){
- this._getJsonAsync("_tags", "/_ah/api/swarming/v1/tasks/tags",
+ this._getJsonAsync("_tags", "/api/swarming/v1/tasks/tags",
"_busy2", this.auth_headers);
- this._getJsonAsync("_dimensions","/_ah/api/swarming/v1/bots/dimensions",
+ this._getJsonAsync("_dimensions","/api/swarming/v1/bots/dimensions",
"_busy3", this.auth_headers);
this._request();
@@ -213,7 +213,7 @@
if (!this.auth_headers || !this.query_params) {
return;
}
- this._getJsonAsync("_list", "/_ah/api/swarming/v1/tasks/list",
+ this._getJsonAsync("_list", "/api/swarming/v1/tasks/list",
"_busy1", this.auth_headers, this.query_params);
},

Powered by Google App Engine
This is Rietveld 408576698