Skip to content

Commit

Permalink
worker: use unix time for HDF5 start_time
Browse files Browse the repository at this point in the history
sbourdeauducq committed May 3, 2016
1 parent 7976127 commit c50555e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artiq/master/worker_impl.py
Original file line number Diff line number Diff line change
@@ -232,7 +232,7 @@ def main():
dataset_mgr.write_hdf5(f.create_group("datasets"))
f["artiq_version"] = artiq_version
f["rid"] = rid
f["start_time"] = start_time
f["start_time"] = int(time.mktime(start_time))
f["expid"] = pyon.encode(expid)
put_object({"action": "completed"})
elif action == "examine":

0 comments on commit c50555e

Please sign in to comment.