Index: appengine/findit_mock/handlers/analyze_failure.py |
diff --git a/appengine/findit_mock/handlers/analyze_failure.py b/appengine/findit_mock/handlers/analyze_failure.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..086fe51f1234890df21c2cf5049b2e04fb0fd335 |
--- /dev/null |
+++ b/appengine/findit_mock/handlers/analyze_failure.py |
@@ -0,0 +1,9 @@ |
+# Copyright 2016 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+from gae_libs.handlers import base_handler |
+ |
+class AnalyzeFailure(base_handler.BaseHandler): |
+ def HandleGet(self): |
+ self.response.write('Backend is analyzing a Waterfall failure') |