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
2 changes: 1 addition & 1 deletion core/integration/bookkeeping/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -1440,7 +1440,7 @@ func (p *Plugin) CallStack(data interface{}) (stack map[string]interface{}) {
Errorf("could not access the parent role when trying to propagate the LHC fill info")
return
}
parentRole.SetGlobalRuntimeVar("fill_info_fill_number", string(lhcInfo.FillNumber))
parentRole.SetGlobalRuntimeVar("fill_info_fill_number", strconv.FormatInt(int64(lhcInfo.FillNumber), 10))
parentRole.SetGlobalRuntimeVar("fill_info_filling_scheme", lhcInfo.FillingSchemeName)
parentRole.SetGlobalRuntimeVar("fill_info_beam_type", lhcInfo.BeamType)
if lhcInfo.StableBeamsStart != nil {
Expand Down