We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62ec336 commit 191faceCopy full SHA for 191face
core/src/main/scala/org/apache/spark/util/Utils.scala
@@ -1716,7 +1716,7 @@ private[spark] object Utils extends Logging {
1716
serviceName: String = "",
1717
maxRetries: Int = portMaxRetries): (T, Int) = {
1718
val serviceString = if (serviceName.isEmpty) "" else s" '$serviceName'"
1719
- logInfo(s"Starting service$serviceString on port $port with maximum $maxRetries retries. ")
+ logInfo(s"Starting service$serviceString on port $startPort with maximum $maxRetries retries. ")
1720
for (offset <- 0 to maxRetries) {
1721
// Do not increment port if startPort is 0, which is treated as a special port
1722
val tryPort = if (startPort == 0) {
0 commit comments