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.


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



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



The behaviour in ecflow 4.0 happens because the time attribute are treated individually.

Here the time 10:00, was set free on Sunday. 

(when time attributes are set free, they stay free, until re-queue.)

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


...