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
9 changes: 9 additions & 0 deletions core/integration/odc/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -1229,6 +1229,15 @@ func (p *Plugin) CallStack(data interface{}) (stack map[string]interface{}) {
Warn("could not get get variable force_run_as_raw from environment context")
}

pdpBeamType, ok := varStack["pdp_beam_type"]
if ok {
arguments["pdp_beam_type"] = pdpBeamType
} else {
log.WithField("partition", envId).
WithField("call", "Configure").
Warn("could not get get variable pdp_beam_type from environment context")
}

detectorListS, ok := varStack["detectors"]
if ok {
detectorsSlice, err := p.parseDetectors(detectorListS)
Expand Down