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 cdf9530 commit 53a77e5Copy full SHA for 53a77e5
update.go
@@ -363,6 +363,9 @@ other options are ignored.
363
}
364
config.IntelRdt = &configs.IntelRdt{}
365
intelRdtManager := intelrdt.NewManager(&config, container.ID(), state.IntelRdtPath)
366
+ if intelRdtManager == nil {
367
+ return fmt.Errorf("failed to create IntelRdtManager (got nil)")
368
+ }
369
if err := intelRdtManager.Apply(state.InitProcessPid); err != nil {
370
return err
371
0 commit comments