Skip to content

Commit

Permalink
Disable timezone conversion in csv covid pipeline (#6130)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpbrown authored Jul 14, 2023
1 parent 2bc17db commit f1d6ba6
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 f1d6ba6

Please sign in to comment.