| Index: dashboard/dashboard/dispatcher.py
|
| diff --git a/dashboard/dashboard/dispatcher.py b/dashboard/dashboard/dispatcher.py
|
| index 51841c4fdf6b6824543b704fefa9bae5d5c228b4..63dd0edebf35e5f57dae456f73c68a3830a04b5a 100644
|
| --- a/dashboard/dashboard/dispatcher.py
|
| +++ b/dashboard/dashboard/dispatcher.py
|
| @@ -17,6 +17,7 @@ from dashboard import bisect_stats
|
| from dashboard import bisect_fyi
|
| from dashboard import buildbucket_job_status
|
| from dashboard import change_internal_only
|
| +from dashboard import create_health_report
|
| from dashboard import debug_alert
|
| from dashboard import delete_test_data
|
| from dashboard import dump_graph_json
|
| @@ -69,6 +70,7 @@ _URL_MAPPING = [
|
| (r'/buildbucket_job_status/(\d+)',
|
| buildbucket_job_status.BuildbucketJobStatusHandler),
|
| ('/change_internal_only', change_internal_only.ChangeInternalOnlyHandler),
|
| + ('/create_health_report', create_health_report.CreateHealthReportHandler),
|
| ('/debug_alert', debug_alert.DebugAlertHandler),
|
| ('/delete_expired_entities', layered_cache.DeleteExpiredEntitiesHandler),
|
| ('/delete_test_data', delete_test_data.DeleteTestDataHandler),
|
|
|