From 1a5007009da589d39b420dca15b96fa1a8ce9e82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Antonsson?= Date: Mon, 10 Nov 2014 16:13:21 +0100 Subject: [PATCH] =rem #16241 Added helpful message for remoting startup timeout. --- akka-remote/src/main/scala/akka/remote/Remoting.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-remote/src/main/scala/akka/remote/Remoting.scala b/akka-remote/src/main/scala/akka/remote/Remoting.scala index 37bb98bc0d..85a51d13aa 100644 --- a/akka-remote/src/main/scala/akka/remote/Remoting.scala +++ b/akka-remote/src/main/scala/akka/remote/Remoting.scala @@ -195,7 +195,7 @@ private[remote] class Remoting(_system: ExtendedActorSystem, _provider: RemoteAc } catch { case e: TimeoutException ⇒ - notifyError("Startup timed out", e) + notifyError("Startup timed out. This is usually related to actor system host setting or host name resolution misconfiguration.", e) throw e case NonFatal(e) ⇒ notifyError("Startup failed", e)