Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
Fix result collecting script in performnace test (redhat-developer#1230)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmacik committed Sep 23, 2022
1 parent 6ae44d9 commit 077b68e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/performance/collect-results.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ timestamps() {
echo -n ";"

# AllDoneTimestamp
done_ts=$(cat "$log" | jq -rc 'select(.msg | contains("Done")) | select(.serviceBinding | contains("'$ns/$name'")) | select(.retry==false).ts')
done_ts=$(cat "$log" | jq -rc 'select(.msg | contains("Done")) | select(.serviceBinding | contains("'$ns/$name'")) | select(.retry==false).ts' | tail -n 1)
if [ -n "$done_ts" ]; then
all_done=$(date -d "@$done_ts" "+%F %T.%N")
else
Expand Down

0 comments on commit 077b68e

Please sign in to comment.