mirror of
https://github.com/containers/podman.git
synced 2025-12-02 02:58:03 +08:00
Update module github.com/containers/psgo to v1.10.0
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
2
vendor/github.com/containers/psgo/internal/proc/ns.go
generated
vendored
2
vendor/github.com/containers/psgo/internal/proc/ns.go
generated
vendored
@@ -47,7 +47,7 @@ func ReadMappings(path string) ([]idtools.IDMap, error) {
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer file.Close()
|
||||
defer file.Close() //nolint:errcheck
|
||||
|
||||
var mappings []idtools.IDMap
|
||||
|
||||
|
||||
10
vendor/github.com/containers/psgo/internal/proc/pids.go
generated
vendored
10
vendor/github.com/containers/psgo/internal/proc/pids.go
generated
vendored
@@ -31,7 +31,7 @@ func GetPIDs() ([]string, error) {
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer procDir.Close()
|
||||
defer procDir.Close() //nolint:errcheck
|
||||
|
||||
// extract string slice of all directories in procDir
|
||||
pidDirs, err := procDir.Readdirnames(0)
|
||||
@@ -74,7 +74,7 @@ func getPIDsFromCgroupV1(pid string) ([]string, error) {
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer f.Close()
|
||||
defer f.Close() //nolint:errcheck
|
||||
|
||||
scanner := bufio.NewScanner(f)
|
||||
cgroupPath := ""
|
||||
@@ -109,7 +109,7 @@ func getPIDsFromCgroupV1(pid string) ([]string, error) {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
defer f.Close()
|
||||
defer f.Close() //nolint:errcheck
|
||||
|
||||
pids := []string{}
|
||||
scanner = bufio.NewScanner(f)
|
||||
@@ -128,7 +128,7 @@ func getPIDsFromCgroupV2(pid string) ([]string, error) {
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer f.Close()
|
||||
defer f.Close() //nolint:errcheck
|
||||
|
||||
scanner := bufio.NewScanner(f)
|
||||
cgroupSlice := ""
|
||||
@@ -152,7 +152,7 @@ func getPIDsFromCgroupV2(pid string) ([]string, error) {
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer f.Close()
|
||||
defer f.Close() //nolint:errcheck
|
||||
|
||||
pids := []string{}
|
||||
scanner = bufio.NewScanner(f)
|
||||
|
||||
Reference in New Issue
Block a user