Versions Compared

Key

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

...

In ecflow 4.0 the definition below can produce unexpected runs.

This behaviour happens because ecflow 4.0 each time attributes are is treated individually.

Here time was set free on Sunday.

Code Block
titleecflow 4.0
...
family f1
   day monday
   task t1
      time 10:00  # runs Monday@00:00 and Monday@10.00


In ecflow 4.0 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
   task t1
      time 10:00  # runs on Monday@10.00


...