Skip to content

Commit

Permalink
add timezone to csv file
Browse files Browse the repository at this point in the history
  • Loading branch information
edgao committed Feb 21, 2024
1 parent b9b77ec commit 0e89330
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,15 @@ public List<Object> getDataRow(final UUID id, final String formattedString, fina
if (useDestinationsV2Columns) {
return List.of(
id,
Timestamp.from(Instant.ofEpochMilli(emittedAt)),
// TODO check that this is safe to apply to ALL destinations
Instant.ofEpochMilli(emittedAt),
"",
formattedString);
} else {
return List.of(
id,
formattedString,
Timestamp.from(Instant.ofEpochMilli(emittedAt)));
Instant.ofEpochMilli(emittedAt));
}
}

Expand Down

0 comments on commit 0e89330

Please sign in to comment.