We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fcdd31 commit 22cffa8Copy full SHA for 22cffa8
exec_helpers/subprocess_runner.py
@@ -290,6 +290,9 @@ def _execute_async( # pylint: disable=arguments-differ
290
291
if stdin is None:
292
process_stdin: _OptionalIOBytes = process.stdin
293
+ elif process.stdin is None:
294
+ self.logger.warning("STDIN pipe is not set, but STDIN data is available to send.")
295
+ process_stdin = None
296
else:
297
stdin_str: bytes = self._string_bytes_bytearray_as_bytes(stdin)
298
try:
0 commit comments