Skip to content

Commit

Permalink
Fix parsing of Timestamp Lothiraldan#160
Browse files Browse the repository at this point in the history
  • Loading branch information
timwhite committed Mar 5, 2017
1 parent 8bc5e26 commit 8294458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/jobs/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {JobEventToJobStore, ArgSpecParser} from './utils';
function UpdateJobs(jobs) {
for (let job_id in jobs) {
let job_data = jobs[job_id];
job_data['StartTime'] = moment(job_data['StartTime']).unix()
job_data['StartTime'] = moment(job_data['StartTime'], 'YYYY, MMM DD HH:mm:ss.SSSSSS').unix()
job_data['jid'] = job_id;
let path = ['jobs', job_id];
if(store.exists(path)) {
Expand Down

0 comments on commit 8294458

Please sign in to comment.