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
{{ message }}
This repository has been archived by the owner on Jul 6, 2022. It is now read-only.
I was trying to deploy a mysql dbms today, and it seems like the validation for serverName is stricter than the documentation. The documentation describes the naming requirement as
The server name can contain only lowercase letters, numbers, and the hyphen (-) character. It must contain from 3 to 63 characters.
However, the code in mysql/plan_schemas.go doesn't allow for hyphens, restricting serverName to ^[a-z0-9]+$.
It seems like one or the other should be updated, unless there's a reason for the difference?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I was trying to deploy a mysql dbms today, and it seems like the validation for
serverName
is stricter than the documentation. The documentation describes the naming requirement asHowever, the code in mysql/plan_schemas.go doesn't allow for hyphens, restricting
serverName
to^[a-z0-9]+$
.It seems like one or the other should be updated, unless there's a reason for the difference?
The text was updated successfully, but these errors were encountered: