We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b52f397 commit 0fe8c3fCopy full SHA for 0fe8c3f
core/integration/odc/plugin.go
@@ -1229,6 +1229,15 @@ func (p *Plugin) CallStack(data interface{}) (stack map[string]interface{}) {
1229
Warn("could not get get variable force_run_as_raw from environment context")
1230
}
1231
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
+
1241
detectorListS, ok := varStack["detectors"]
1242
if ok {
1243
detectorsSlice, err := p.parseDetectors(detectorListS)
0 commit comments