From 9e16c02b0d62f366d4546296fb373a875c5a3376 Mon Sep 17 00:00:00 2001 From: Yoel Garcia Diaz Date: Thu, 7 Mar 2019 06:58:28 +0000 Subject: [PATCH] fix login the bind address when remoting starts --- .../src/main/scala/akka/remote/artery/ArteryTransport.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-remote/src/main/scala/akka/remote/artery/ArteryTransport.scala b/akka-remote/src/main/scala/akka/remote/artery/ArteryTransport.scala index b9de479aef..6a368599f5 100644 --- a/akka-remote/src/main/scala/akka/remote/artery/ArteryTransport.scala +++ b/akka-remote/src/main/scala/akka/remote/artery/ArteryTransport.scala @@ -461,7 +461,7 @@ private[remote] abstract class ArteryTransport(_system: ExtendedActorSystem, _pr log.info( "Remoting started with transport [Artery {}]; listening on address [{}] with UID [{}]", - settings.Transport, localAddress.address, localAddress.uid) + settings.Transport, bindAddress.address, bindAddress.uid) } protected def startTransport(): Unit