Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.

Commit

Permalink
Fix action reporter hour format and add timezone (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
kabochya authored May 6, 2019
1 parent e9ccc94 commit cf870d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class DoctorKafkaActionsServlet extends DoctorKafkaServlet {
private static final long CONSUMER_POLL_TIMEOUT_MS = 1000L;
private static final DecoderFactory avroDecoderFactory = DecoderFactory.get();
private static Schema operatorActionSchema = OperatorAction.getClassSchema();
private static SimpleDateFormat dtFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
private static SimpleDateFormat dtFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z");

@Override
public void renderJSON(PrintWriter writer, Map<String, String> params) {
Expand Down

0 comments on commit cf870d9

Please sign in to comment.