mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
refactor(errors): use errors.is
to account wrapped errors
This commit is contained in:
parent
e4fb72ec69
commit
53cb4c06c2
9 changed files with 19 additions and 15 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue