nhl / link-move

A model-driven dynamically-configurable framework to acquire data from external sources and save it to your database.
Apache License 2.0
35 stars 15 forks source link

Execution.java toString is reporting incorrect start time #159

Closed pjjanak closed 5 years ago

pjjanak commented 6 years ago

Looks like this is happening in Execution.java:58.

DateFormat format = new SimpleDateFormat("YYYY-mm-dd HH:MM:SS");

Should be

DateFormat format = new SimpleDateFormat("YYYY-MM-dd HH:mm:SS");

andrus commented 5 years ago

Done. Also changed "SS" to "ss" (ms vs secs).