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

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

Issue 1260743006: Update appengine-pipelines before files API turndown. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Fix typo. Created 5 years, 4 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
« no previous file with comments | « appengine/findit/main.py ('k') | appengine/findit/waterfall/extract_signal_pipeline.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import collections 5 import collections
6 from datetime import datetime 6 from datetime import datetime
7 import logging 7 import logging
8 import random 8 import random
9 import time 9 import time
10 10
11 from google.appengine.api import memcache 11 from google.appengine.api import memcache
12 12
13 from pipeline_utils.appengine_third_party_pipeline_src_pipeline import pipeline 13 from pipeline_utils.appengine_third_party_pipeline_python_src_pipeline \
14 import pipeline
14 15
15 from common.http_client_appengine import HttpClientAppengine as HttpClient 16 from common.http_client_appengine import HttpClientAppengine as HttpClient
16 from model.wf_build import WfBuild 17 from model.wf_build import WfBuild
17 from model.wf_analysis import WfAnalysis 18 from model.wf_analysis import WfAnalysis
18 from waterfall import buildbot 19 from waterfall import buildbot
19 from waterfall.base_pipeline import BasePipeline 20 from waterfall.base_pipeline import BasePipeline
20 from waterfall import lock_util 21 from waterfall import lock_util
21 22
22 23
23 _MAX_BUILDS_TO_CHECK = 20 24 _MAX_BUILDS_TO_CHECK = 20
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 self._SaveBlamelistAndChromiumRevisionIntoDict(build_info, builds) 256 self._SaveBlamelistAndChromiumRevisionIntoDict(build_info, builds)
256 257
257 failed_steps = self._CreateADictOfFailedSteps(build_info) 258 failed_steps = self._CreateADictOfFailedSteps(build_info)
258 259
259 self._CheckForFirstKnownFailure( 260 self._CheckForFirstKnownFailure(
260 master_name, builder_name, build_number, failed_steps, builds) 261 master_name, builder_name, build_number, failed_steps, builds)
261 262
262 failure_info['builds'] = builds 263 failure_info['builds'] = builds
263 failure_info['failed_steps'] = failed_steps 264 failure_info['failed_steps'] = failed_steps
264 return failure_info 265 return failure_info
OLDNEW
« no previous file with comments | « appengine/findit/main.py ('k') | appengine/findit/waterfall/extract_signal_pipeline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698