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 5bef29e commit 33dc29bCopy full SHA for 33dc29b
images/fio/scripts/fio-master
@@ -7,4 +7,8 @@ fio_jobfile=$2
7
8
# Don't buffer stdout or stderr to make sure that fio writes its complete log
9
# before the process exits and the container is killed
10
-stdbuf -o0 -e0 fio --output-format=json+ --client=${worker_hostfile} ${fio_jobfile}
+
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