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

Unified Diff: appengine_module/test_results/main.py

Issue 498083002: Make flakiness dashboard links to googlesource work post git migration. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@deployable
Patch Set: move test to the right location Created 6 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
« no previous file with comments | « appengine_module/test_results/handlers/test/redirector_test.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine_module/test_results/main.py
diff --git a/appengine_module/test_results/main.py b/appengine_module/test_results/main.py
index 7895be9c990cfef3f9fd1535ced8ccb38799cdec..f89fec86577c5fc50041af7a8e1e977916391851 100644
--- a/appengine_module/test_results/main.py
+++ b/appengine_module/test_results/main.py
@@ -31,6 +31,7 @@ import webapp2
from appengine_module.test_results.handlers import buildershandler
from appengine_module.test_results.handlers import builderstatehandler
from appengine_module.test_results.handlers import menu
+from appengine_module.test_results.handlers import redirector
from appengine_module.test_results.handlers import testfilehandler
routes = [
@@ -43,6 +44,8 @@ routes = [
('/builderstate', builderstatehandler.GetBuilderState),
('/updatebuilderstate', builderstatehandler.Update),
('/', menu.Menu),
+ webapp2.Route('/revision_range', webapp2.RedirectHandler, defaults={
+ '_uri': redirector.get_googlesource_url}),
]
app = webapp2.WSGIApplication(routes, debug=True)
« no previous file with comments | « appengine_module/test_results/handlers/test/redirector_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698