File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
scaletest/templates/scaletest-runner/scripts Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ show_json() {
26
26
}
27
27
28
28
set_status () {
29
- echo " $( date -Iseconds ) $* " >> " ${SCALETEST_STATE_DIR} /status"
29
+ echo " $( date -Ins ) $* " >> " ${SCALETEST_STATE_DIR} /status"
30
30
}
31
31
lock_status () {
32
32
chmod 0440 " ${SCALETEST_STATE_DIR} /status"
@@ -48,7 +48,7 @@ start_phase() {
48
48
fi
49
49
phase_num=$(( phase_num + 1 ))
50
50
log " Start phase ${phase_num} : ${* } "
51
- echo " $( date -Iseconds ) START:${phase_num} : ${* } " >> " ${SCALETEST_PHASE_FILE} "
51
+ echo " $( date -Ins ) START:${phase_num} : ${* } " >> " ${SCALETEST_PHASE_FILE} "
52
52
}
53
53
end_phase () {
54
54
phase=" $( tail -n 1 " ${SCALETEST_PHASE_FILE} " | grep " START:${phase_num} :" | cut -d' ' -f3-) "
@@ -57,7 +57,7 @@ end_phase() {
57
57
exit 1
58
58
fi
59
59
log " End phase ${phase_num} : ${phase} "
60
- echo " $( date -Iseconds ) END:${phase_num} : ${phase} " >> " ${SCALETEST_PHASE_FILE} "
60
+ echo " $( date -Ins ) END:${phase_num} : ${phase} " >> " ${SCALETEST_PHASE_FILE} "
61
61
}
62
62
get_phase () {
63
63
if [[ -f " ${SCALETEST_PHASE_FILE} " ]]; then
You can’t perform that action at this time.
0 commit comments