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

Unified Diff: appengine/swarming/server/bot_code.py

Issue 2969513002: Add a default Isolate gRPC proxy in config (Closed)
Patch Set: Fix problem in tests Created 3 years, 6 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 | « appengine/swarming/server/bot_archive.py ('k') | appengine/swarming/swarming_bot/bot_code/bot_main.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/server/bot_code.py
diff --git a/appengine/swarming/server/bot_code.py b/appengine/swarming/server/bot_code.py
index e9ab6353a2b78719f9145c180a11040cf4f571bf..75ee76484a6d889773100affc13f00d388c4bfcb 100644
--- a/appengine/swarming/server/bot_code.py
+++ b/appengine/swarming/server/bot_code.py
@@ -216,7 +216,7 @@ def get_bot_version(host):
bot_dir = os.path.join(ROOT_DIR, 'swarming_bot')
version = bot_archive.get_swarming_bot_version(
bot_dir, host, utils.get_app_version(), additionals,
- local_config.settings().enable_ts_monitoring)
+ local_config.settings())
memcache.set('version-' + signature, version, namespace='bot_code', time=60)
return version, additionals
@@ -241,7 +241,7 @@ def get_swarming_bot_zip(host):
bot_dir = os.path.join(ROOT_DIR, 'swarming_bot')
content, version = bot_archive.get_swarming_bot_zip(
bot_dir, host, utils.get_app_version(), additionals,
- local_config.settings().enable_ts_monitoring)
+ local_config.settings())
logging.info('generated bot code %s; %d bytes', version, len(content))
cache_swarming_bot_zip(version, content)
return content
« no previous file with comments | « appengine/swarming/server/bot_archive.py ('k') | appengine/swarming/swarming_bot/bot_code/bot_main.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698