Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -1237,7 +1237,9 @@ def _poll_k8s_driver_via_api(self) -> str | None:
if consecutive_unknown >= max_consecutive_unknown:
raise RuntimeError(
f"Spark application {app_id} reported Unknown phase "
f"{consecutive_unknown} times consecutively; giving up."
f"{consecutive_unknown} times consecutively (the pod's state could not "
f"be obtained, typically due to an error communicating with the node the "
f"pod should be running on); giving up."
)
else:
consecutive_unknown = 0
Expand Down