Versions Compared

Key

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

...

Code Block
titleecflow 4.X
...
family f1
   time 10:00 day monday   # set free on Sunday
   task t1
      day monday # runs Monday@00:00 and Monday@10.00
      time 10:00 # time was set free on Sunday


In ecflow 5.X.X the day/date act like a guard over any other time attribute.

Hence the time is not considered until the day is free.

Code Block
titleecflow 5.0
...
family f1
   day monday     # Guards the time, until date/date is free
   task t1
      time 10:00  # runs on Monday@10.00


...