Skip to content

Commit dcbfef1

Browse files
committed
Update fill info with LHC plugin on SOR, EOR and GO_ERROR
This allows for the new way of updating fill information which avoids going through Bookkeeping. Closes OCTRL-1057.
1 parent 79a02e7 commit dcbfef1

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

workflows/readout-dataflow.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1340,6 +1340,7 @@ defaults:
13401340
fmq_initial_shm_cleanup_enabled: "true"
13411341
fmq_cleanup_enabled: "true"
13421342
kafka_enabled: "false"
1343+
lhc_enabled: "false"
13431344
minimal_dpl_enabled: "false" # TODO FOR LATER: I think this one is no longer needed, we now enabled/disable the Minimal DPL workflow on FLP via dpl_workflow
13441345
monitoring_dd_url: "no-op://"
13451346
monitoring_dpl_url: "no-op://"
@@ -2178,6 +2179,33 @@ roles:
21782179
trigger: DESTROY
21792180
timeout: 10s
21802181
critical: false
2182+
- name: lhc
2183+
enabled: "{{ lhc_enabled == 'true' }}"
2184+
roles:
2185+
- name: deploy
2186+
call:
2187+
func: lhc.UpdateFillInfo()
2188+
trigger: before_DEPLOY-50
2189+
timeout: 5s
2190+
critical: true
2191+
- name: sor
2192+
call:
2193+
func: lhc.UpdateFillInfo()
2194+
trigger: before_START_ACTIVITY-50
2195+
timeout: 5s
2196+
critical: true
2197+
- name: eor
2198+
call:
2199+
func: lhc.UpdateFillInfo()
2200+
trigger: before_STOP_ACTIVITY-50
2201+
timeout: 5s
2202+
critical: true
2203+
- name: error
2204+
call:
2205+
func: lhc.UpdateFillInfo()
2206+
trigger: before_GO_ERROR-50
2207+
timeout: 5s
2208+
critical: false
21812209
- name: kafka
21822210
enabled: "{{ kafka_enabled == 'true' }}"
21832211
roles:

0 commit comments

Comments
 (0)