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

Unified Diff: git_cl.py

Issue 2392463009: git cl try-results for Gerrit. (Closed)
Patch Set: Better message. Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tests/git_cl_test.py » ('j') | tests/git_cl_test.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index 74a72739bc6c13485a9e2b7a656f745a9fd6c7db..bfe92c2987d61a2af338d86f0863bab1026d8131 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -4856,10 +4856,12 @@ def CMDtry_results(parser, args):
cl.GetIssue())
if patchset != cl.GetPatchset():
- print('WARNING: Mismatch between local config and server. Did a previous '
- 'upload fail?\n'
- 'By default, git cl try uses latest patchset from codereview.\n'
- 'Continuing using patchset %s.\n' % patchset)
+ print('Warning: Codereview server has newer patchsets (%s) than most '
+ 'recent upload from local checkout (%s). Did a previous upload '
+ 'fail?\n'
+ 'By default, git cl try uses latest patchset from codereview, '
+ 'continuing to use patchset %s.\n' %
+ (patchset, cl.GetPatchset(), patchset))
try:
jobs = fetch_try_jobs(auth_config, cl, options.buildbucket_host, patchset)
except BuildbucketResponseException as ex:
« no previous file with comments | « no previous file | tests/git_cl_test.py » ('j') | tests/git_cl_test.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698