We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba8c4c6 commit 1150c64Copy full SHA for 1150c64
core/integration/bookkeeping/plugin.go
@@ -1440,7 +1440,7 @@ func (p *Plugin) CallStack(data interface{}) (stack map[string]interface{}) {
1440
Errorf("could not access the parent role when trying to propagate the LHC fill info")
1441
return
1442
}
1443
- parentRole.SetGlobalRuntimeVar("fill_info_fill_number", string(lhcInfo.FillNumber))
+ parentRole.SetGlobalRuntimeVar("fill_info_fill_number", strconv.FormatInt(int64(lhcInfo.FillNumber), 10))
1444
parentRole.SetGlobalRuntimeVar("fill_info_filling_scheme", lhcInfo.FillingSchemeName)
1445
parentRole.SetGlobalRuntimeVar("fill_info_beam_type", lhcInfo.BeamType)
1446
if lhcInfo.StableBeamsStart != nil {
0 commit comments