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: crates/stackable-operator/src/validation.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ use snafu::Snafu;
19
19
pubconstRFC_1123_LABEL_MAX_LENGTH:usize = 63;
20
20
// This is a modified RFC 1123 format according to the Kubernetes specification, see https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#dns-label-names
constLOWERCASE_RFC_1123_LABEL_ERROR_MSG:&str = "a lowercase RFC 1123 label must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character";
22
+
constLOWERCASE_RFC_1123_LABEL_ERROR_MSG:&str = "a lowercase RFC 1123 label must consist of lower case alphanumeric charactersor '-', and must start and end with an alphanumeric character";
23
23
24
24
// This is a RFC 1123 format, see https://www.rfc-editor.org/rfc/rfc1123
0 commit comments