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 5bbad4f commit 6732906Copy full SHA for 6732906
staging/src/k8s.io/cri-api/pkg/apis/testing/fake_runtime_service.go
@@ -407,6 +407,10 @@ func (r *FakeRuntimeService) ContainerStatus(containerID string) (*runtimeapi.Co
407
}
408
409
func (r *FakeRuntimeService) UpdateContainerResources(string, *runtimeapi.LinuxContainerResources) error {
410
+ r.Lock()
411
+ defer r.Unlock()
412
+
413
+ r.Called = append(r.Called, "UpdateContainerResources")
414
return nil
415
416
0 commit comments