From 31f6170c623867523eeca25c5626f006bee727cf Mon Sep 17 00:00:00 2001 From: Eric Loots Date: Mon, 27 May 2019 15:32:57 +0200 Subject: [PATCH] Fix typo in expanded SRV query (#26998) The "serviceName" is not prepended with an underscore when querying for a DNS SRV record. --- akka-docs/src/main/paradox/discovery/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/discovery/index.md b/akka-docs/src/main/paradox/discovery/index.md index 7e456683d5..9dbef9d468 100644 --- a/akka-docs/src/main/paradox/discovery/index.md +++ b/akka-docs/src/main/paradox/discovery/index.md @@ -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: