Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Repeat with day/date

The behaviour of day/date attribute under a repeat has changed from ecflow 4.0. Take the example below.

In ecflow 4.0, if task t1 took longer than 1 hour task t2 would not run.

In ecflow 5.0, once the day monday is free on family f1, its it stays free until the automatic re-queue caused by the parent repeat. The net effect being that task t2 will still run, even if we have strayed into Tuesday.

Code Block
suite s1
  family f
    repeat integer rep 0 1
    family f1
       day monday  
       time 23:00
       task t1
       task t2 
            trigger t1 == complete
 ...

   

...