refactor(errors): use errors.is to account wrapped errors

This commit is contained in:
Gusted 2021-08-03 20:30:55 +02:00 committed by Max Mazurov
parent e4fb72ec69
commit 53cb4c06c2
9 changed files with 19 additions and 15 deletions

View file

@ -80,7 +80,7 @@ func setScmPassCred(sock *net.UnixConn) error {
func systemdStatus(status SDStatus, desc string) {
sock, err := sdNotifySock()
if err != nil {
if err != ErrNoNotifySock {
if !errors.Is(err, ErrNoNotifySock) {
log.Println("systemd: failed to acquire notify socket:", err)
}
return
@ -107,7 +107,7 @@ func systemdStatus(status SDStatus, desc string) {
func systemdStatusErr(reportedErr error) {
sock, err := sdNotifySock()
if err != nil {
if err != ErrNoNotifySock {
if !errors.Is(err, ErrNoNotifySock) {
log.Println("systemd: failed to acquire notify socket:", err)
}
return