Skip to content
Snippets Groups Projects
Commit cbfc26ba authored by Kousuke Saruta's avatar Kousuke Saruta Committed by Josh Rosen
Browse files

[SPARK-3089] Fix meaningless error message in ConnectionManager

Author: Kousuke Saruta <sarutak@oss.nttdata.co.jp>

Closes #2000 from sarutak/SPARK-3089 and squashes the following commits:

02dfdea [Kousuke Saruta] Merge branch 'master' of git://git.apache.org/spark into SPARK-3089
e759ce7 [Kousuke Saruta] Improved error message when closing SendingConnection
parent 7eb9cbc2
No related branches found
No related tags found
No related merge requests found
......@@ -467,7 +467,7 @@ private[spark] class ConnectionManager(
val sendingConnectionOpt = connectionsById.get(remoteConnectionManagerId)
if (!sendingConnectionOpt.isDefined) {
logError("Corresponding SendingConnectionManagerId not found")
logError(s"Corresponding SendingConnection to ${remoteConnectionManagerId} not found")
return
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment