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

Unified Diff: scripts/slave/recipe_modules/goma/resources/cloudtail_utils.py

Issue 2375843005: Stop redirect stdout/stderr and remove close_fds=True (Closed)
Patch Set: Created 4 years, 3 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: scripts/slave/recipe_modules/goma/resources/cloudtail_utils.py
diff --git a/scripts/slave/recipe_modules/goma/resources/cloudtail_utils.py b/scripts/slave/recipe_modules/goma/resources/cloudtail_utils.py
index ea3c619976c857f27e66c2cefcae7b6e454e78dc..413462a4b7889c204fee2acbd12353e2cc35166f 100644
--- a/scripts/slave/recipe_modules/goma/resources/cloudtail_utils.py
+++ b/scripts/slave/recipe_modules/goma/resources/cloudtail_utils.py
@@ -21,8 +21,6 @@ def start_cloudtail(args):
'--log-id', 'goma_compiler_proxy',
'--path',
goma_utils.GetLatestGomaCompilerProxyInfo()],
- stdout=open(os.devnull, 'w'),
- stderr=open(os.devnull, 'w'),
shinyak 2016/09/29 05:00:16 It looks cloudtail emits error to stderr :-( Is it
close_fds=True)
ukai 2016/09/29 04:51:45 might be better to leave stdout, stderr and drop c
tikuta 2016/09/29 05:00:28 raw_io opens fds in goma module. so, I need to clo
sys.stdout.write(str(proc.pid))
« 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