A subtle bug in the rewrite of sonar: it formats the timestamp incorrectly. The correct format is yyyy-mm-ddThh:mm:ss+hh:mm but strftime uses ...+hhmm. Previously we did not have a test case. Now we do, but because it assumed that the format was correct it is actually wrong.
A subtle bug in the rewrite of sonar: it formats the timestamp incorrectly. The correct format is
yyyy-mm-ddThh:mm:ss+hh:mm
but strftime uses...+hhmm
. Previously we did not have a test case. Now we do, but because it assumed that the format was correct it is actually wrong.