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 af0fc8b commit db770e5Copy full SHA for db770e5
src/cmd/run.go
@@ -273,8 +273,8 @@ func runCommand(container string,
273
signal := <-signalChannel
274
275
logrus.Debugf("Got signal %d, killing cgroup", signal)
276
- cgroupFilePath := fmt.Sprintf("/proc/%d/cgroup", entryPointPID);
277
- cgroupId, err := os.ReadFile(cgroupFilePath);
+ cgroupFilePath := fmt.Sprintf("/proc/%d/cgroup", entryPointPID)
+ cgroupId, err := os.ReadFile(cgroupFilePath)
278
if err != nil {
279
logrus.Debugf("Could not look up cgroup of container %s: %s", container, err)
280
return
0 commit comments