forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
39 lines (34 loc) · 863 Bytes
/
errors.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package errors
import "strings"
import (
kapierrors "k8s.io/kubernetes/pkg/api/errors"
"k8s.io/kubernetes/pkg/api/unversioned"
)
// TolerateNotFoundError tolerates 'not found' errors
func TolerateNotFoundError(err error) error {
if kapierrors.IsNotFound(err) {
return nil
}
return err
}
// ErrorToSentence will capitalize the first letter of the error
// message and add a period to the end if one is not present.
func ErrorToSentence(err error) string {
msg := err.Error()
if len(msg) == 0 {
return msg
}
msg = strings.ToUpper(msg)[:1] + msg[1:]
if !strings.HasSuffix(msg, ".") {
msg = msg + "."
}
return msg
}
// IsTimeoutErr returns true if the error indicates timeout
func IsTimeoutErr(err error) bool {
e, ok := err.(*kapierrors.StatusError)
if !ok {
return false
}
return e.ErrStatus.Reason == unversioned.StatusReasonTimeout
}