Closed
Description
In a couple of places in the spec we require reverse domain name notation
:
message GetPluginInfoResponse {
// The name MUST follow reverse domain name notation format
// (https://en.wikipedia.org/wiki/Reverse_domain_name_notation).
string name = 1;
}
...
// The key prefix MUST follow reverse domain name notation format
// (https://en.wikipedia.org/wiki/Reverse_domain_name_notation).
message Topology {
map<string, string> segments = 1;
}
We should drop this requirement for 1.0, and let the plugins choose to do forward domain notation, e.g. mycsidriver.mycompany.com
for improved readability.