Skip to content

Commit

Permalink
bugfix : timeZone declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
bou3108 committed Oct 7, 2022
1 parent a276b32 commit 8519fe5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public String transformPsToLine(Ps ps, String id) {

public void setExtractionTime() {
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyyMMddHHmm");
LocalDateTime now = LocalDateTime.now(ZoneId.of("ECT"));
LocalDateTime now = LocalDateTime.now(ZoneId.of("Europe/Paris"));
extractTime = dtf.format(now);
}

Expand Down

0 comments on commit 8519fe5

Please sign in to comment.