@@ -1265,7 +1265,6 @@ func (p *Plugin) CallStack(data interface{}) (stack map[string]interface{}) {
1265
1265
1266
1266
inEnv := bkpb.EnvironmentUpdateRequest {
1267
1267
Id : env .Id ().String (),
1268
- ToredownAt : & toredownAt ,
1269
1268
Status : & status ,
1270
1269
StatusMessage : & statusMessage ,
1271
1270
}
@@ -1444,11 +1443,11 @@ func (p *Plugin) CallStack(data interface{}) (stack map[string]interface{}) {
1444
1443
parentRole .SetGlobalRuntimeVar ("fill_info_fill_number" , string (lhcInfo .FillNumber ))
1445
1444
parentRole .SetGlobalRuntimeVar ("fill_info_filling_scheme" , lhcInfo .FillingSchemeName )
1446
1445
parentRole .SetGlobalRuntimeVar ("fill_info_beam_type" , lhcInfo .BeamType )
1447
- if lhcInfo .StableBeamStart != nil {
1448
- parentRole .SetGlobalRuntimeVar ("fill_info_stable_beam_start_ms" , strconv .FormatInt (* lhcInfo .StableBeamStart , 10 ))
1446
+ if lhcInfo .StableBeamsStart != nil {
1447
+ parentRole .SetGlobalRuntimeVar ("fill_info_stable_beam_start_ms" , strconv .FormatInt (* lhcInfo .StableBeamsStart , 10 ))
1449
1448
}
1450
- if lhcInfo .StableBeamEnd != nil {
1451
- parentRole .SetGlobalRuntimeVar ("fill_info_stable_beam_end_ms" , strconv .FormatInt (* lhcInfo .StableBeamEnd , 10 ))
1449
+ if lhcInfo .StableBeamsEnd != nil {
1450
+ parentRole .SetGlobalRuntimeVar ("fill_info_stable_beam_end_ms" , strconv .FormatInt (* lhcInfo .StableBeamsEnd , 10 ))
1452
1451
}
1453
1452
log .WithField ("partition" , envId ).
1454
1453
WithField ("level" , infologger .IL_Devel ).
@@ -1540,7 +1539,7 @@ func (p *Plugin) CallStack(data interface{}) (stack map[string]interface{}) {
1540
1539
Error ("bookkeeping plugin RetrieveFillInfo error" )
1541
1540
call .VarStack ["__call_error_reason" ] = err .Error ()
1542
1541
call .VarStack ["__call_error" ] = callFailedStr
1543
- } else if (lhcFill .StableBeamStart != nil && * lhcFill .StableBeamStart != 0 ) && (lhcFill .StableBeamEnd == nil || * lhcFill .StableBeamEnd == 0 ) {
1542
+ } else if (lhcFill .StableBeamsStart != nil && * lhcFill .StableBeamsStart != 0 ) && (lhcFill .StableBeamsEnd == nil || * lhcFill .StableBeamsEnd == 0 ) {
1544
1543
// we enter here only if stable beams started and are not over (stable beams start exists && stable beams end does not exist)
1545
1544
log .WithField ("partition" , envId ).
1546
1545
WithField ("level" , infologger .IL_Devel ).
0 commit comments