Skip to content

Commit

Permalink
[NOD-933] fix: update on partition key
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-deri committed Jun 6, 2024
1 parent f1d0c30 commit 95d80be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public DataReport extractReportFromColdStorage(Integer year, Integer month, Inte
log.info(String.format("Extracting report data from day [%s].", day));
DailyDataReport dailyDataReport = new DailyDataReport(day);

String stringedDate = day.replace("-0", "").replace("-", "").replace("+0000", "");
String stringedDate = day.replace("-0", "");

Date dateLowerBound = dateValidator.getDate(day);
long batchCounter = 1;
Expand Down

0 comments on commit 95d80be

Please sign in to comment.