Skip to content

bug fix the excessive time issue

Wanting Niu requested to merge bug_fix_end_time into offline_new-workflow

The DAG (injection_frame_generation_workflow ) right now creates the gps-end-time of the last job beyond the end-time set in the Makefile. When frame DAG is created, it sets gps-start-time and gps-end-time to always be 512s difference, even if it is beyond the gps-end-time I give.

For example, if I give gps-start-time=1386984082, gps-end-time=1386984978, it supposes to split into 2 jobs: one from 1386984082 to 1386984594, the other from 1386984594 to 1386984978. But the DAG actually splits into: one from 1386984082 to 1386984594, the other from 1386984594 to 1386985106.

This add a bug-fix to this issue

Edited by Wanting Niu

Merge request reports