Skip to content

Commit 33dc29b

Browse files
committed
Reorder fio args
1 parent 5bef29e commit 33dc29b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

images/fio/scripts/fio-master

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@ fio_jobfile=$2
77

88
# Don't buffer stdout or stderr to make sure that fio writes its complete log
99
# before the process exits and the container is killed
10-
stdbuf -o0 -e0 fio --output-format=json+ --client=${worker_hostfile} ${fio_jobfile}
10+
11+
# Moving output-format to the end of the command cleans up json output?
12+
# https://github.com/axboe/fio/issues/731#issuecomment-871259173
13+
14+
stdbuf -o0 -e0 fio --client=${worker_hostfile} ${fio_jobfile} --output-format=json+

0 commit comments

Comments
 (0)