Skip to content

Commit 191face

Browse files
invalid value name
1 parent 62ec336 commit 191face

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/org/apache/spark/util/Utils.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1716,7 +1716,7 @@ private[spark] object Utils extends Logging {
17161716
serviceName: String = "",
17171717
maxRetries: Int = portMaxRetries): (T, Int) = {
17181718
val serviceString = if (serviceName.isEmpty) "" else s" '$serviceName'"
1719-
logInfo(s"Starting service$serviceString on port $port with maximum $maxRetries retries. ")
1719+
logInfo(s"Starting service$serviceString on port $startPort with maximum $maxRetries retries. ")
17201720
for (offset <- 0 to maxRetries) {
17211721
// Do not increment port if startPort is 0, which is treated as a special port
17221722
val tryPort = if (startPort == 0) {

0 commit comments

Comments
 (0)