Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NodeUtils: do not pass stdin to group upcalls #581

Merged
merged 1 commit into from
Feb 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions lib/ClusterShell/NodeUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@
from string import Template
from subprocess import Popen, PIPE

# compat with python 2.7, import directly above for 3.x
try:
from subprocess import DEVNULL
except ImportError:
DEVNULL = open(os.devnull, 'r')

# compat with python 2.7, use str directly in 3.x
try:
basestring
except NameError:
Expand Down Expand Up @@ -202,8 +209,8 @@ def _upcall_read(self, cmdtpl, args=dict()):
"""
cmdline = Template(self.upcalls[cmdtpl]).safe_substitute(args)
self.logger.debug("EXEC '%s'", cmdline)
proc = Popen(cmdline, stdout=PIPE, shell=True, cwd=self.cfgdir,
universal_newlines=True)
proc = Popen(cmdline, stdin=DEVNULL, stdout=PIPE, shell=True,
cwd=self.cfgdir, universal_newlines=True)
output = proc.communicate()[0].strip()
self.logger.debug("READ '%s'", output)
if proc.returncode != 0:
Expand Down
Loading