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

Side by Side Diff: appengine_module/pipeline_utils/pipelines.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_module/pipeline_utils/appengine_third_party_pipeline_src_pipeline ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 os 5 import os
6 6
7 from google.appengine.api import app_identity 7 from google.appengine.api import app_identity
8 8
9 from appengine_third_party_pipeline_src_pipeline import pipeline 9 from appengine_third_party_pipeline_python_src_pipeline import pipeline
10 10
11 11
12 class AppenginePipeline(pipeline.Pipeline): 12 class AppenginePipeline(pipeline.Pipeline):
13 def send_result_email(self): # pragma: no cover 13 def send_result_email(self): # pragma: no cover
14 """We override this so it doesn't email on completion.""" 14 """We override this so it doesn't email on completion."""
15 pass 15 pass
16 16
17 def pipeline_status_url(self): # pragma: no cover 17 def pipeline_status_url(self): # pragma: no cover
18 """Returns a URL to look up the status of the pipeline.""" 18 """Returns a URL to look up the status of the pipeline."""
19 scheme = 'https' 19 scheme = 'https'
20 if os.environ['APPLICATION_ID'].startswith('dev'): 20 if os.environ['APPLICATION_ID'].startswith('dev'):
21 scheme = 'http' 21 scheme = 'http'
22 return '%s://%s/_ah/pipeline/status?root=%s&auto=false' % ( 22 return '%s://%s/_ah/pipeline/status?root=%s&auto=false' % (
23 scheme, 23 scheme,
24 app_identity.get_default_version_hostname(), 24 app_identity.get_default_version_hostname(),
25 self.root_pipeline_id) 25 self.root_pipeline_id)
OLDNEW
« no previous file with comments | « appengine_module/pipeline_utils/appengine_third_party_pipeline_src_pipeline ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698