Skip to content

Commit

Permalink
Disable timezone conversion in csv covid pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
mpbrown committed Jul 14, 2023
1 parent d95685e commit 86627b4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,8 @@ private byte[] transformCsvContent(byte[] content) {

// row is passed by object reference here
modifyRowSpecimenNameToSNOMED(row, headers);
modifyRowDatetimeStrings(row, headers);
// Disabling timezone conversion for now
// modifyRowDatetimeStrings(row, headers);

rows[i] = String.join(",", row);
}
Expand Down

0 comments on commit 86627b4

Please sign in to comment.