wjddn279 commented on code in PR #64143:
URL: https://github.com/apache/airflow/pull/64143#discussion_r2999389206
##########
providers/cncf/kubernetes/src/airflow/providers/cncf/kubernetes/kube_config.py:
##########
@@ -89,9 +89,7 @@ def __init__(self, executor_conf: ExecutorConf | None = None):
# create, watch, get, and delete pods in this namespace.
self.kube_namespace = self._conf.get(self.kubernetes_section,
"namespace")
self.multi_namespace_mode =
self._conf.getboolean(self.kubernetes_section, "multi_namespace_mode")
- multi_ns_list = self._conf.get(
- self.kubernetes_section, "multi_namespace_mode_namespace_list",
fallback=""
- )
+ multi_ns_list = self._conf.get(self.kubernetes_section,
"multi_namespace_mode_namespace_list")
Review Comment:
Yes, I checked the three key where the fallback was removed
(`multi_namespace_mode_namespace_list`, `pod_template_file`, `namespace`) and
the defaults are explicitly specified in `providers.yaml` and the values also
exist in `provider_config_fallback_defaults.cfg`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]