Skip to content

Commit

Permalink
EPMRPP-91000 || Change date formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
pbortnik committed Jun 3, 2024
1 parent 52b0941 commit 059c405
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import java.io.IOException;
import java.io.InputStream;
import java.text.SimpleDateFormat;
import java.time.format.DateTimeFormatter;
import java.util.List;
import java.util.Optional;
import org.slf4j.Logger;
Expand All @@ -27,7 +28,7 @@ public class LogSender {

private static final String TEST_EXECUTION_LOG_TITLE = "Test execution log:";

private static final SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");
private static final DateTimeFormatter DATE_FORMAT = DateTimeFormatter.ofPattern("MM-dd-yyyy HH:mm:ss");

private final MondayClient mondayClient;
private final DataStoreService dataStoreService;
Expand Down

0 comments on commit 059c405

Please sign in to comment.