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 393398b commit 175f180Copy full SHA for 175f180
stacks/airflow/airflow.yaml
@@ -142,7 +142,9 @@ data:
142
143
class SparkKubernetesSensor(BaseSensorOperator):
144
template_fields = ("application_name", "namespace")
145
- FAILURE_STATES = ("Failed", "Unknown")
+ # See https://github.com/stackabletech/spark-k8s-operator/pull/460/files#diff-d737837121132af6b60f50279a78464b05dcfd06c05d1d090f4198a5e962b5f6R371
146
+ # Unknown is set immediately so it must be excluded from the failed states.
147
+ FAILURE_STATES = ("Failed")
148
SUCCESS_STATES = ("Succeeded")
149
150
def __init__(
0 commit comments