Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update resource-managers/kubernetes/core/src/main/scala/org/apache/sp…
…ark/scheduler/cluster/k8s/ExecutorPodsWatchSnapshotSource.scala

Co-authored-by: Martin Grigorov <[email protected]>
  • Loading branch information
holdenk and martin-g committed Aug 11, 2022
commit 6fef69d201a449114ef30244dd90985913d485c8
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class ExecutorPodsWatchSnapshotSource(
def start(applicationId: String): Unit = {
if (enablePolling) {
require(watchConnection == null, "Cannot start the watcher twice.")
logDebug(s"Starting watch for pods with labels $SPARK_APP_ID_LABEL=$applicationId," +
logDebug(s"Starting to watch for pods with labels $SPARK_APP_ID_LABEL=$applicationId," +
s" $SPARK_ROLE_LABEL=$SPARK_POD_EXECUTOR_ROLE.")
watchConnection = kubernetesClient.pods()
.withLabel(SPARK_APP_ID_LABEL, applicationId)
Expand Down