Fix typo in expanded SRV query (#26998)

The "serviceName" is not prepended with an underscore when querying
for a DNS SRV record.
This commit is contained in:
Eric Loots 2019-05-27 15:32:57 +02:00 committed by Arnout Engelen
parent 1bc9a5f388
commit 31f6170c62

View file

@ -59,7 +59,7 @@ Port can be used when a service opens multiple ports e.g. a HTTP port and an Akk
DNS discovery maps `Lookup` queries as follows:
* `serviceName`, `portName` and `protocol` set: SRV query in the form: `_port._protocol._name` Where the `_`s are added.
* `serviceName`, `portName` and `protocol` set: SRV query in the form: `_port._protocol.name` Where the `_`s are added.
* Any query missing any of the fields is mapped to a A/AAAA query for the `serviceName`
The mapping between Akka service discovery terminology and SRV terminology: