Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 18 additions & 6 deletions workflows/readout-dataflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1992,17 +1992,29 @@ roles:
trigger: after_STOP_ACTIVITY-100
timeout: "{{ trg_unload_timeout }}"
critical: false
- name: errorcleanup
- name: errorensurerunstop
call:
func: trg.Cleanup()
func: trg.EnsureRunStop()
trigger: before_GO_ERROR-10
timeout: "{{ trg_cleanup_timeout }}"
timeout: "{{ trg_stop_timeout }}"
critical: false
- name: errorensurerununload
call:
func: trg.EnsureRunUnload()
trigger: before_GO_ERROR-9
timeout: "{{ trg_unload_timeout }}"
critical: false
- name: destroycleanup
- name: destroyensurerunstop
call:
func: trg.Cleanup()
func: trg.EnsureRunStop()
trigger: DESTROY-100
timeout: "{{ trg_cleanup_timeout }}"
timeout: "{{ trg_stop_timeout }}"
critical: false
- name: destroyensurerununload
call:
func: trg.EnsureRunUnload()
trigger: DESTROY-99
timeout: "{{ trg_unload_timeout }}"
critical: false
- name: ccdb
enabled: "{{ccdb_enabled == 'true'}}"
Expand Down