Versions Compared

Key

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

...

Sometimes you may want to have a suite in which you incrementally add things and once these parts have served their purpose you want to dispose them.
autocancel is a way of automatically removing these families. Nodes with this property defined will be automatically removed by ecFlow once they become complete and the time defined has elapsed.

Code Block
suite x
   family fam
      autocancel +05:00
      task t
   endfamily
 family ffendsuite


In this example family fam will be removed from the suite once it has been complete for more than five hours.
This is equivalent to the user issuing the CLI command

...