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

Unified Diff: scripts/slave/recipes/chromedriver.py

Issue 2143893003: Fix how revision_cp is obtained in chromedriver recipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 5 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 | scripts/slave/recipes/chromedriver.expected/Android_ChromeDriver_Tests__dbg__basic.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/chromedriver.py
diff --git a/scripts/slave/recipes/chromedriver.py b/scripts/slave/recipes/chromedriver.py
index 03178aebb9bcba958bf986a70bc3b94377527cd7..7ce9c0177af4b740e137e58fa169e45a38d5bc10 100644
--- a/scripts/slave/recipes/chromedriver.py
+++ b/scripts/slave/recipes/chromedriver.py
@@ -68,8 +68,8 @@ def RunSteps(api):
target=api.chromium.c.BUILD_CONFIG,
build_url=None,
build_archive_url=api.properties.get('parent_build_archive_url'))
- commit_position = api.commit_position.parse_revision(
- api.properties['got_revision_cp'])
+ revision_cp = api.bot_update.last_returned_properties['got_revision_cp']
+ commit_position = api.commit_position.parse_revision(revision_cp)
api.chromium_android.common_tests_setup_steps()
if builder['install_apks']:
« no previous file with comments | « no previous file | scripts/slave/recipes/chromedriver.expected/Android_ChromeDriver_Tests__dbg__basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698