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

Unified Diff: appengine/swarming/elements/res/imp/botpage/bot-page.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/botpage/bot-page.html
diff --git a/appengine/swarming/elements/res/imp/botpage/bot-page.html b/appengine/swarming/elements/res/imp/botpage/bot-page.html
index c22be1766b6c5f6f175c2a76c71282647783e86e..901463638a85a4213977500dc9d56d10d079d7a6 100644
--- a/appengine/swarming/elements/res/imp/botpage/bot-page.html
+++ b/appengine/swarming/elements/res/imp/botpage/bot-page.html
@@ -354,7 +354,7 @@
},
_deleteBot: function() {
- swarming.postWithToast("/_ah/api/swarming/v1/bot/"+this.bot_id+"/delete",
+ swarming.postWithToast("/api/swarming/v1/bot/"+this.bot_id+"/delete",
"Deleting "+this.bot_id, this._auth_headers);
},
@@ -439,7 +439,7 @@
},
_shutdownBot: function() {
- swarming.postWithToast("/_ah/api/swarming/v1/bot/"+this.bot_id+"/terminate",
+ swarming.postWithToast("/api/swarming/v1/bot/"+this.bot_id+"/terminate",
"Shutting down "+this.bot_id, this._auth_headers);
},

Powered by Google App Engine
This is Rietveld 408576698