You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lionel Cons reports that Fluent Bit sometimes adds odd "drift"
to timestamps e.g. parsing "10000" with "%s" results in 13600.0
rather than 10000.0.
This occurs because "%s" is parsed differently depending on the
implementation of strptime(). Some use localtime() internally,
and others use gmtime(). This causes the parsed result to vary
by the amount of each system's time offset.
For this reason, we started to always use our own implementation
of strptime(3). Remove the build option as being deprecated.
Signed-off-by: Fujimoto Seiji <[email protected]>
0 commit comments