Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Align hook calls to follow the changes in OCTRL-902 #655

Merged
merged 1 commit into from
Jul 16, 2024
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
38 changes: 19 additions & 19 deletions workflows/readout-dataflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1892,25 +1892,25 @@ roles:
call:
func: dcs.PrepareForRun()
trigger: before_CONFIGURE
await: after_CONFIGURE
await: after_CONFIGURE-1
timeout: "{{ dcs_pfr_timeout }}"
critical: false
- name: sor
call:
func: dcs.StartOfRun()
trigger: before_START_ACTIVITY
trigger: before_START_ACTIVITY+100
timeout: "{{ dcs_sor_timeout }}"
critical: true
- name: eor
call:
func: dcs.EndOfRun()
trigger: after_STOP_ACTIVITY
trigger: after_STOP_ACTIVITY-50
timeout: "{{ dcs_eor_timeout }}"
critical: true
- name: error-cleanup
call:
func: dcs.Cleanup()
trigger: after_GO_ERROR
trigger: after_GO_ERROR-1
timeout: "{{ dcs_cleanup_timeout }}"
critical: false
- name: destroy-cleanup
Expand All @@ -1926,13 +1926,13 @@ roles:
call:
func: ddsched.PartitionInitialize()
trigger: before_CONFIGURE
await: after_CONFIGURE
await: after_CONFIGURE-1
timeout: "{{ ddsched_initialize_timeout }}"
critical: true
- name: terminate
call:
func: ddsched.PartitionTerminate()
trigger: after_RESET
trigger: after_RESET-1
timeout: "{{ ddsched_terminate_timeout }}"
critical: true
- name: cleanup
Expand All @@ -1959,35 +1959,35 @@ roles:
call:
func: odc.PartitionInitialize()
trigger: before_DEPLOY
await: after_DEPLOY
await: after_DEPLOY-1
timeout: "{{ odc_partitioninitialize_timeout }}"
critical: true
- name: configure
call:
func: odc.Configure()
trigger: after_CONFIGURE
await: after_CONFIGURE
trigger: after_CONFIGURE-1
await: after_CONFIGURE-1
timeout: "{{ odc_configure_timeout }}"
critical: true
- name: start
call:
func: odc.Start()
trigger: before_START_ACTIVITY
await: after_START_ACTIVITY
trigger: before_START_ACTIVITY+100
await: after_START_ACTIVITY-10
timeout: "{{ odc_start_timeout }}"
critical: true
- name: stop
call:
func: odc.Stop()
trigger: before_STOP_ACTIVITY
await: after_STOP_ACTIVITY
await: after_STOP_ACTIVITY-50
timeout: "{{ odc_stop_timeout }}"
critical: true
- name: reset
call:
func: odc.Reset()
trigger: before_RESET
await: after_RESET
await: after_RESET-1
timeout: "{{ odc_reset_timeout }}"
critical: true
- name: part-term
Expand Down Expand Up @@ -2028,7 +2028,7 @@ roles:
- name: load
call:
func: trg.RunLoad()
trigger: before_START_ACTIVITY-100
trigger: before_START_ACTIVITY+10
timeout: "{{ trg_load_timeout }}"
critical: true
- name: pre-start
Expand All @@ -2040,7 +2040,7 @@ roles:
- name: start
call:
func: trg.RunStart()
trigger: after_START_ACTIVITY
trigger: after_START_ACTIVITY-10
timeout: "{{ trg_start_timeout }}"
critical: true
- name: stop
Expand Down Expand Up @@ -2073,7 +2073,7 @@ roles:
- name: start
call:
func: ccdb.RunStart()
trigger: before_START_ACTIVITY
trigger: before_START_ACTIVITY+100
timeout: "{{ ccdb_start_timeout }}"
critical: false
- name: stop
Expand All @@ -2100,13 +2100,13 @@ roles:
- name: startrun
call:
func: bookkeeping.StartOfRun()
trigger: before_START_ACTIVITY-100
trigger: before_START_ACTIVITY+10
timeout: 10s
critical: false
- name: retrievefillinfoatsor
call:
func: bookkeeping.RetrieveFillInfo()
trigger: before_START_ACTIVITY-99
trigger: before_START_ACTIVITY+11
timeout: 10s
critical: false
- name: updaterunstart
Expand Down Expand Up @@ -2265,6 +2265,6 @@ roles:
- name: before_start_activity
call:
func: kafka.PublishStartActivityUpdate()
trigger: before_START_ACTIVITY-50
trigger: before_START_ACTIVITY+50
timeout: 5s
critical: false
Loading