Skip to content

Commit

Permalink
Make stdin more generic
Browse files Browse the repository at this point in the history
  • Loading branch information
favilo committed Jul 2, 2024
1 parent 3e03eea commit 0660ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esrally/utils/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def run_subprocess_with_logging_and_output(
command_line: str,
header: Optional[str] = None,
level: LogLevel = logging.INFO,
stdin: Optional[FileId] = None,
stdin: Optional[Union[FileId, IO[bytes]]] = None,
env: Optional[Mapping[str, str]] = None,
detach: bool = False,
) -> subprocess.CompletedProcess:
Expand Down

0 comments on commit 0660ab9

Please sign in to comment.