Commit 8c75bf0
authored
infra/helper: pass the right arguments to docker_run in reproduce_impl (#14178)
```
def docker_run(run_args, print_output=True, architecture='x86_64'):
"""Calls `docker run`."""
```
the argument of `docker_run`(that is `run_function`) is `print_output`
and I don't think `err_result` had the same meaning.
Without this patch, using `infra/helper.py reproduce` does not produce
any output because the docker stdout is not printed.1 parent 9092bfc commit 8c75bf0
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1665 | 1665 | | |
1666 | 1666 | | |
1667 | 1667 | | |
1668 | | - | |
| 1668 | + | |
1669 | 1669 | | |
1670 | 1670 | | |
1671 | 1671 | | |
| |||
0 commit comments