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

Unified Diff: infra/services/service_manager/__main__.py

Issue 1165673003: Don't log if the job is already running - otherwise it spams cron. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@moremastermon
Patch Set: Rebase Created 5 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/services/service_manager/__main__.py
diff --git a/infra/services/service_manager/__main__.py b/infra/services/service_manager/__main__.py
index e337f76c9ce0f443f486dc2e417e3b4dbe70a7c7..dce69d1254e8b09f0c0d7d453d2db9a09bad159d 100644
--- a/infra/services/service_manager/__main__.py
+++ b/infra/services/service_manager/__main__.py
@@ -74,7 +74,7 @@ def main(argv):
watcher.run()
signal.signal(signal.SIGINT, previous_sigint_handler)
except daemon.LockAlreadyLocked:
- logging.error('Another instance of service_manager is already running')
+ # Another instance is already running.
return 1
else:
ts_mon.close()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698