Skip to content

Commit

Permalink
update errors handling in pkg/ipam
Browse files Browse the repository at this point in the history
Signed-off-by: Ruslan Bayandinov <wazsone@ya.ru>
  • Loading branch information
wazsone committed Jan 31, 2023
1 parent 13e3b97 commit 4f8be35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ipam/vl3ipam/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,5 @@ func (s *vl3IPAMServer) ManagePrefixes(prefixServer ipam.IPAM_ManagePrefixesServ
return nil
}

return errors.WithStack(err)
return errors.Wrap(err, "failed to manage prefixes")
}

0 comments on commit 4f8be35

Please sign in to comment.