Replies: 1 comment
-
Fixed as of 13f74aa |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Help
Description
The long format timestamps used in the timestamp reporter have incorrect fractional seconds since 6177844. I noticed this in my pipeline, where the fractional seconds were always exactly the same as the integer seconds, but it's easy to reproduce it without actually running a pipeline.
The repetition comes because
%OS
includes the seconds as well as the fractional seconds rounded to a certain number of digits past the decimal, by default 0. I think the format you want is something like"%Y-%m-%d %H:%M:%OS2"
.Beta Was this translation helpful? Give feedback.
All reactions