log both listening and binding addresses if they are different
This commit is contained in:
parent
9e16c02b0d
commit
b2fcc9f1b0
1 changed files with 13 additions and 4 deletions
|
|
@ -458,10 +458,19 @@ private[remote] abstract class ArteryTransport(_system: ExtendedActorSystem, _pr
|
||||||
topLevelFlightRecorder.loFreq(Transport_StartupFinished, NoMetaData)
|
topLevelFlightRecorder.loFreq(Transport_StartupFinished, NoMetaData)
|
||||||
|
|
||||||
startRemoveQuarantinedAssociationTask()
|
startRemoveQuarantinedAssociationTask()
|
||||||
|
|
||||||
log.info(
|
if (localAddress.address == bindAddress.address)
|
||||||
"Remoting started with transport [Artery {}]; listening on address [{}] with UID [{}]",
|
log.info(
|
||||||
settings.Transport, bindAddress.address, bindAddress.uid)
|
"Remoting started with transport [Artery {}]; listening on address [{}] with UID [{}]",
|
||||||
|
settings.Transport, bindAddress.address, bindAddress.uid)
|
||||||
|
else {
|
||||||
|
log.info(
|
||||||
|
"Remoting started with transport [Artery {}];", settings.Transport)
|
||||||
|
log.info(
|
||||||
|
"Remoting is listening on address [{}] with UID [{}] and bind to [{}] with UID [{}]",
|
||||||
|
localAddress.address, localAddress.uid, bindAddress.address, bindAddress.uid)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected def startTransport(): Unit
|
protected def startTransport(): Unit
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue