Index: recipe_modules/bot_update/resources/bot_update.py |
diff --git a/recipe_modules/bot_update/resources/bot_update.py b/recipe_modules/bot_update/resources/bot_update.py |
index f8ecdb79f217cd2a396b34ab987ac3959aeb0a41..d3e9dbef4b0d2203255b2aeb9f7dd7a4d0bee819 100755 |
--- a/recipe_modules/bot_update/resources/bot_update.py |
+++ b/recipe_modules/bot_update/resources/bot_update.py |
@@ -1698,10 +1698,9 @@ def main(): |
slave = options.slave_name |
master = options.master |
- if not master: |
- # bot_update activation whitelist is checked only on buildbot masters. |
- # If there is no master, bot_update is always active. |
- options.force = True |
+ # Always run. This option will be removed in a later CL, but for now make sure |
+ # that bot_update is ALWAYS set to run, no matter what. |
+ options.force = True |
# Check if this script should activate or not. |
active = options.force or check_valid_host(master, builder, slave) |