Skip to content

Commit 0fe8c3f

Browse files
committed
[core] propagate pdp_beam_type as FairMQ property to ODC tasks
needed by QC tasks OCTRL-976
1 parent b52f397 commit 0fe8c3f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

core/integration/odc/plugin.go

+9
Original file line numberDiff line numberDiff line change
@@ -1229,6 +1229,15 @@ func (p *Plugin) CallStack(data interface{}) (stack map[string]interface{}) {
12291229
Warn("could not get get variable force_run_as_raw from environment context")
12301230
}
12311231

1232+
pdpBeamType, ok := varStack["pdp_beam_type"]
1233+
if ok {
1234+
arguments["pdp_beam_type"] = pdpBeamType
1235+
} else {
1236+
log.WithField("partition", envId).
1237+
WithField("call", "Configure").
1238+
Warn("could not get get variable pdp_beam_type from environment context")
1239+
}
1240+
12321241
detectorListS, ok := varStack["detectors"]
12331242
if ok {
12341243
detectorsSlice, err := p.parseDetectors(detectorListS)

0 commit comments

Comments
 (0)