Skip to content

Commit 271b58d

Browse files
committed
fix swapped stdout/stderr name in runner
1 parent ec55696 commit 271b58d

File tree

1 file changed

+1
-1
lines changed
  • ydb/library/benchmarks/runner/runner

1 file changed

+1
-1
lines changed

ydb/library/benchmarks/runner/runner/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def time_ns():
1919
RE_DIGITS = re.compile(r'([0-9]+)')
2020

2121

22-
def run(argv, err, out):
22+
def run(argv, out, err):
2323

2424
start_time = time_ns()
2525
pid = os.posix_spawn(argv[0], argv, {}, file_actions=(

0 commit comments

Comments
 (0)