We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ffe098 commit 0d57f94Copy full SHA for 0d57f94
pkg/apis/dos/validation/dos.go
@@ -203,7 +203,7 @@ func ValidateAppProtectDosAllowList(allowList []v1beta1.AllowListEntry) error {
203
for _, entry := range allowList {
204
ipValid := isValidIPWithMask(entry.IPWithMask)
205
if !ipValid {
206
- return fmt.Errorf("Invalid IP with subnet mask: %s", entry.IPWithMask)
+ return fmt.Errorf("invalid IP with subnet mask: %s", entry.IPWithMask)
207
}
208
209
return nil
0 commit comments