Skip to content

Commit

Permalink
[SPARK-3149] Connection establishment information is not enough.
Browse files Browse the repository at this point in the history
Author: Kousuke Saruta <[email protected]>

Closes apache#2060 from sarutak/SPARK-3149 and squashes the following commits:

1cc89af [Kousuke Saruta] Modified log message of accepting connection
  • Loading branch information
sarutak authored and JoshRosen committed Aug 20, 2014
1 parent 0ea46ac commit c1ba4cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ private[spark] class ConnectionManager(
newConnection.onReceive(receiveMessage)
addListeners(newConnection)
addConnection(newConnection)
logInfo("Accepted connection from [" + newConnection.remoteAddress.getAddress + "]")
logInfo("Accepted connection from [" + newConnection.remoteAddress + "]")
} catch {
// might happen in case of issues with registering with selector
case e: Exception => logError("Error in accept loop", e)
Expand Down

0 comments on commit c1ba4cd

Please sign in to comment.