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

Commit

Permalink
* Fix issue where audit log timestamp is in 12-hour clock instead of …
Browse files Browse the repository at this point in the history
…24-hour (military) clock (#194)
  • Loading branch information
mayitbeegh authored May 20, 2019
1 parent 8c037c4 commit 20e0fca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
# limitations under the License.
#

version=3.27.0
version=3.27.1
groupId=com.nike.cerberus
artifactId=cms
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class AuditLogProcessor implements EventProcessor {

protected final Logger auditLogger = LoggerFactory.getLogger(this.getClass());

private static final DateTimeFormatter ATHENA_DATE_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");
private static final DateTimeFormatter ATHENA_DATE_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
private static final String PARTY_LIKE_ITS_99 = "1999-01-01T01:00:00+00:00";

private final ObjectMapper om = new ObjectMapper();
Expand Down

0 comments on commit 20e0fca

Please sign in to comment.