We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UUIDs compliant with RFC 4122 are rejected. Passing UUIDs generated by uuidgen(1) causes an error:
uuidgen(1)
# vnctl datapaths add \ --uuid=f5a6ca6f-7032-4dbd-9245-1e799ff48c14 \ --display-name=detapath01 \ --dpid=0x0000deadbeefcafe \ --node-id=vna --- :error: Vnet::Endpoints::Errors::InvalidUUID :message: 'Datapath#uuid: f5a6ca6f-7032-4dbd-9245-1e799ff48c14' :code: '101'
this seems to be limited by regex {prefix}-[a-z0-9]{1,16}.
{prefix}-[a-z0-9]{1,16}
RFC-compliant UUIDs are widely used, and also supported by mysql: SELECT UUID();. https://en.wikipedia.org/wiki/Universally_unique_identifier https://tools.ietf.org/html/rfc4122
SELECT UUID();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
UUIDs compliant with RFC 4122 are rejected.
Passing UUIDs generated by
uuidgen(1)
causes an error:this seems to be limited by regex
{prefix}-[a-z0-9]{1,16}
.RFC-compliant UUIDs are widely used, and also supported by mysql:
SELECT UUID();
.https://en.wikipedia.org/wiki/Universally_unique_identifier
https://tools.ietf.org/html/rfc4122
The text was updated successfully, but these errors were encountered: