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 6753f5d commit fecb037Copy full SHA for fecb037
pkg/docker/Status.go
@@ -85,8 +85,6 @@ func (h *SidecarHandler) StatusHandler(w http.ResponseWriter, r *http.Request) {
85
}
86
log.G(h.Ctx).Info("-- Container exit code is: " + strconv.Itoa(exitCode))
87
resp[i].Containers = append(resp[i].Containers, v1.ContainerStatus{Name: container.Name, State: v1.ContainerState{Terminated: &v1.ContainerStateTerminated{ExitCode: int32(exitCode)}}, Ready: false})
88
- // release all the GPUs from the container
89
- h.GpuManager.Release(containerName)
90
91
} else {
92
log.G(h.Ctx).Info("-- Container " + containerName + " doesn't exist")
0 commit comments