Skip to content

Commit

Permalink
Merge pull request #355 from akhilerm/return-error-from-inotify
Browse files Browse the repository at this point in the history
add InotifyInit err to custom err message
  • Loading branch information
AkihiroSuda authored Nov 28, 2024
2 parents 082af38 + 05bb490 commit d4e976d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cgroup2/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ func (c *Manager) MemoryEventFD() (int, uint32, error) {
fpath := filepath.Join(c.path, "memory.events")
fd, err := unix.InotifyInit()
if err != nil {
return 0, 0, errors.New("failed to create inotify fd")
return 0, 0, fmt.Errorf("failed to create inotify fd: %w", err)
}
wd, err := unix.InotifyAddWatch(fd, fpath, unix.IN_MODIFY)
if err != nil {
Expand Down

0 comments on commit d4e976d

Please sign in to comment.