소스 검색

Revert "[HUE-6739] Collect stderr of subprocess command"

This reverts commit 2ecda3d2ecc5856fb44c9243ec3156e302fa03c4.
Romain Rigaux 8 년 전
부모
커밋
92757f3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      desktop/core/src/desktop/lib/conf.py

+ 1 - 1
desktop/core/src/desktop/lib/conf.py

@@ -704,7 +704,7 @@ def validate_thrift_transport(confvar):
   return []
 
 def coerce_password_from_script(script):
-  p = subprocess.Popen(script, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+  p = subprocess.Popen(script, shell=True, stdout=subprocess.PIPE)
   stdout, stderr = p.communicate()
 
   if p.returncode != 0: