mirror of
https://github.com/outbackdingo/kamaji.git
synced 2026-01-27 18:19:25 +00:00
11 lines
271 B
Go
11 lines
271 B
Go
// Copyright 2022 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package errors
|
|
|
|
import "github.com/pkg/errors"
|
|
|
|
func ShouldReconcileErrorBeIgnored(err error) bool {
|
|
return errors.As(err, &NonExposedLoadBalancerError{}) || errors.As(err, &MissingValidIPError{})
|
|
}
|