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

Unified Diff: milo/appengine/frontend/main.go

Issue 2881213004: [milo] fix raw annotation stream rendering endpoint. (Closed)
Patch Set: make url scheme better Created 3 years, 7 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
« no previous file with comments | « no previous file | milo/appengine/logdog/html.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/appengine/frontend/main.go
diff --git a/milo/appengine/frontend/main.go b/milo/appengine/frontend/main.go
index a79dda8dcdb42ffd5a635ec22a9c9016890d8a23..a060ae48c2a88fa349b78b86801104bb4354c88c 100644
--- a/milo/appengine/frontend/main.go
+++ b/milo/appengine/frontend/main.go
@@ -61,7 +61,9 @@ func init() {
r.GET("/buildbot/:master/:builder/", basemw, buildbot.BuilderHandler)
// LogDog Milo Annotation Streams.
- r.GET("/logdog/build/:project/*prefix", basemw, logdog.BuildHandler)
+ // This mimicks the `logdog://logdog_host/project/*path` url scheme seen on
+ // swarming tasks.
+ r.GET("/raw/build/:logdog_host/:project/*path", basemw, logdog.BuildHandler)
// PubSub subscription endpoints.
r.POST("/_ah/push-handlers/buildbot", basemw, buildbot.PubSubHandler)
« no previous file with comments | « no previous file | milo/appengine/logdog/html.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698