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

Side by Side Diff: appengine/findit/waterfall/try_job_error.py

Issue 1921493002: [Findit] Adding improved error detection to MonitorTryJobPipeline (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Addressing comments Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
stgao 2016/04/26 17:33:06 hmm, as findit/model/wf_try_job_data.py might refe
lijeffrey 2016/04/26 19:07:25 I think you're right, common/waterfall is actually
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 """Represents possible error codes for what can go wrong during try jobs."""
6
7 # An error was detected but the root cause unknown. Cases resulting in this
8 # should be investigated individually and common root causes added to this
9 # module as dedicated error codes.
10 UNKNOWN = 10
11 # The try job did not finish within the required time and was was abandoned.
stgao 2016/04/26 17:33:07 typo: 'was was'
lijeffrey 2016/04/26 19:07:25 Done.
12 TIMEOUT = 20
13 # An error was returned directly when making a request buildbucket.
14 BUILDBUCKET_REQUEST_ERROR = 30
15 # Buildbucket ran the try job and reported an error.
16 BUILDBUCKET_REPORTED_ERROR = 40
17 # An infra failure occurred according to the recipe report.
18 INFRA_FAILURE = 50
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698