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

Unified Diff: scripts/slave/recipe_modules/v8/api.py

Issue 1788653004: Fix bot_update api rename. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Long line. Created 4 years, 9 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 | « scripts/slave/recipe_modules/chromium_tests/steps.py ('k') | scripts/slave/recipes/flutter/engine.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/v8/api.py
diff --git a/scripts/slave/recipe_modules/v8/api.py b/scripts/slave/recipe_modules/v8/api.py
index 8d792ea0301ebf36de4f05ad251f2730e9f73d94..9419f37ba1ce94c2a25b27d7241a07e1f735a7bb 100644
--- a/scripts/slave/recipe_modules/v8/api.py
+++ b/scripts/slave/recipe_modules/v8/api.py
@@ -173,8 +173,9 @@ class V8Api(recipe_api.RecipeApi):
# Bot_update maintains the properties independent of the UI
# presentation.
- self.revision = self.m.bot_update.properties['got_revision']
- self.revision_cp = self.m.bot_update.properties['got_revision_cp']
+ self.revision = self.m.bot_update.last_returned_properties['got_revision']
+ self.revision_cp = (
+ self.m.bot_update.last_returned_properties['got_revision_cp'])
self.revision_number = str(self.m.commit_position.parse_revision(
self.revision_cp))
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/steps.py ('k') | scripts/slave/recipes/flutter/engine.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698