Versions Compared

Key

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


Note

Please take a not of ECFLOW-1436, as the way certain relative triggers are

used

interpreted has changed.


Code Block
titleecflow 4.11.0 or less, these are now errors in 4.12.0
...
family f1
   task t1
       trigger f1 == aborted
   task t2
       trigger ./f1 == aborted



Code Block
titlecorrected triggers in ecflow 4.12.0
...
family f1
   task t1
        trigger ../f1 == aborted
   task t2
        trigger ../f1 == aborted


You can detect these triggers in ecflow 4.12.0. If you have generated your suite definitions in python, then you can use:

Code Block
module load ecflow/4.12.0  # the 4.12.0 release has the new check


Code Block
languagepy
titleCheck Triggers
# build your suite defeinitions
def = ...
print defs.check()  # this will check the trigger expressions

Alternatively you can use:

Code Block
languagebash
titleCheck triggers on the comand line
ecflow_client --get > tmp.def
module swap ecflow/4.12.0
ecflow_client --load tmp.def check_only

If you have already converted to using ecflow 4.12.0 server, you can check your trigger expressions using:

Code Block
titleCheck triggers in ecflow 4.12.0 server
module load ecflow/4.12.0
ecflow_client --check=_all_


...