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 3a42dc2 commit b4ccb63Copy full SHA for b4ccb63
server/pbench/bin/pbench-report-status
@@ -104,7 +104,8 @@ fi
104
105
md5=$(md5sum $file | cut -d' ' -f1)
106
107
-$dir/pbench-gen-json-payload $timestamp $name $doctype $file > ${tmp}/payload
+# drop the -UTC spec from the timestamp: the ES date parser does not like it
108
+$dir/pbench-gen-json-payload ${timestamp%-*} $name $doctype $file > ${tmp}/payload
109
110
curl -XPOST -H 'Content-Type: application/json' "http://$server/$index/$doctype/$md5" --data @"${tmp}/payload" >> ${tmp}/log 2>&1
111
status=$?
0 commit comments