From c63eae1ab974ada157766a10bafe155a171f74fd Mon Sep 17 00:00:00 2001 From: He-Pin Date: Tue, 15 Aug 2023 17:46:08 +0800 Subject: [PATCH] =test Fix typo in Player class. Signed-off-by: He-Pin --- .../scala/org/apache/pekko/remote/testconductor/Player.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multi-node-testkit/src/main/scala/org/apache/pekko/remote/testconductor/Player.scala b/multi-node-testkit/src/main/scala/org/apache/pekko/remote/testconductor/Player.scala index 7dcaa10a8d..b58c7f5dd6 100644 --- a/multi-node-testkit/src/main/scala/org/apache/pekko/remote/testconductor/Player.scala +++ b/multi-node-testkit/src/main/scala/org/apache/pekko/remote/testconductor/Player.scala @@ -361,7 +361,7 @@ private[pekko] class PlayerHandler( Try(reconnect()) match { case Success(r) => connectionRef.set(r) case Failure(ex) => - log.error("Error when try to connect to remote addr:[{}] will retry, time left:[{}], cause:[{}].", + log.error("Error when trying to connect to remote addr:[{}] will retry, time left:[{}], cause:[{}].", server, nextAttempt.timeLeft, ex.getMessage) scheduleReconnect() }