Versions Compared

Key

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

There can be occasions when we want to add variables dynamically  dynamically i.e. In this example we want to configure the ECF_LOGHOST to the machine where the job is running. ECF_LOGHOST is used by the log server, to view the running output in the GUI.

...

Code Block
languagebash
titleheah.h
......
ecflow_client --init=$$ --add "ECF_LOGHOST=%HOST%${HOST}-log" "ECF_LOGPORT=9316"


The removing is optional.

...

The following examples show similar functionality using python api. i.e. set_child_init_add_vars and set_child_complete_del_vars

...