Skip to content

Commit

Permalink
Merge pull request #207 from nebula-plugins/Issue-206/create-proper-t…
Browse files Browse the repository at this point in the history
…imestamp-for-immutableSnapshot

TimestampUtil uses yyyy instead of YYYY for date time formatter.
  • Loading branch information
rpalcolea authored Jan 6, 2021
2 parents bcb0e3d + 9ed8b22 commit b95875a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import java.time.format.DateTimeFormatter
class TimestampUtil {

private static DateTimeFormatter timestampDateFormat = DateTimeFormatter
.ofPattern("YYYYMMddHHmm")
.ofPattern("yyyyMMddHHmm")
.withZone(ZoneOffset.UTC)

static String getUTCFormattedTimestamp() {
Expand Down

0 comments on commit b95875a

Please sign in to comment.