You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ingress/ingress.go
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -17,10 +17,10 @@ import (
17
17
)
18
18
19
19
var (
20
-
ErrNoIngressRules=errors.New("No ingress rules were specified in the config file")
21
-
errLastRuleNotCatchAll=errors.New("The last ingress rule must match all hostnames (i.e. it must be missing, or must be \"*\")")
20
+
ErrNoIngressRules=errors.New("The config file doesn't contain any ingress rules")
21
+
errLastRuleNotCatchAll=errors.New("The last ingress rule must match all URLs (i.e. it should not have a hostname or path filter)")
22
22
errBadWildcard=errors.New("Hostname patterns can have at most one wildcard character (\"*\") and it can only be used for subdomains, e.g. \"*.example.com\"")
0 commit comments