Versions Compared

Key

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


Note

Please take a note of ECFLOW-1436, as the way certain relative triggers are 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 definitions
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_


Bug

  • [ECFLOW-1148] - ecFlowUI: random crash when variables panel is visible and clicking on another node
  • [ECFLOW-1318] - ecFlowUI: multiple selection in treeview is clipped to viewport
  • [ECFLOW-1375] - server: %includeonce misspelled as %includeoncde behaves like %include
  • [ECFLOW-1376] - server: Incorrectly spelled preprocessing directives (e.g. %fred) are not treated as error
  • [ECFLOW-1379] - ecFlowUI: some dates from log appear in local time instead of UTC
  • [ECFLOW-1400] - ecFlowUI: zoom results in wrong period in timeline view
  • [ECFLOW-1413] - ecFlowUI: adjust initial width of duration columns in timeline view
  • [ECFLOW-1414] - ecFlowUi: ECFLOW Variables with values starting with '--' cannot be set through ecflowUI
  • [ECFLOW-1418] - ecFlowUI: timeline view shows incorrect contents when switching between servers
  • [ECFLOW-1419] - ecFlowUI: disabled suite filter is not correctly applied to timeline view
  • [ECFLOW-1420] - ecFlowUI: zoom in timeline view selects wrong period
  • [ECFLOW-1423] - ecFlowUI: header labels missing in duration view in timeline
  • [ECFLOW-1424] - ecFlowUI: duration view column contents are overlapping in timeline
  • [ECFLOW-1428] - ecFlowUI: duration view in timeline does not get updated on refresh
  • [ECFLOW-1432] - ecFlowUI: crash when running url command for a server node
  • [ECFLOW-1433] - server: replace firefox --remote openURL with firefox -new-tab
  • [ECFLOW-1435] - ecFlowUI: crash on startup in tree node model
  • [ECFLOW-1438] - ecFlowUI: zoom stretching to the right border does not work in timeline view
  • [ECFLOW-1439] - ecFlowUI: compilation fails with Qt4

...

  • [ECFLOW-1374] - server: script file location reported to the user can be wrong
  • [ECFLOW-1385] - ecFlowUI: variables are not substituted on the right node level
  • [ECFLOW-1387] - ecFlowUI: improve visual appearance of progress bars and message labels
  • [ECFLOW-1389] - ecFlowUI: improve alignment of node path text in timeline view
  • [ECFLOW-1390] - ecFlowUI: allow wildcard filter for node path in timeline view
  • [ECFLOW-1397] - ecFlowUI: remember settings after reload in timeline view
  • [ECFLOW-1398] - ecFlowUI: clean filter when switching server in timeline view
  • [ECFLOW-1402] - ecFlowUI: improve representation of short state durations in timeline view
  • [ECFLOW-1410] - test: test_signal_SIGTERM is not always reliable
  • [ECFLOW-1412] - python: build python2 and python3 ecflow modules
  • [ECFLOW-1416] - ecFlowUI: timeline path filter should only be run when enter is hit for large log datasets
  • [ECFLOW-1422] - ecFlowUI: change filter should be reapplied to nodes when switching between timeline view modes
  • [ECFLOW-1425] - server: always enable auto flush of log file
  • [ECFLOW-1434] - ecFlowUI: timeline task stats do not show correct maximum
  • [ECFLOW-1436] - client:: trigger on parent accepted without ..

See also the release notes for ecFlowUI.