ashb commented on code in PR #46966:
URL: https://github.com/apache/airflow/pull/46966#discussion_r1965799773


##########
airflow/configuration.py:
##########
@@ -1881,7 +1880,7 @@ def get_airflow_config(airflow_home: str) -> str:
 
 
 def get_all_expansion_variables() -> dict[str, Any]:
-    return {k: v for d in [globals(), locals()] for k, v in d.items()}
+    return {k: v for d in [globals(), locals()] for k, v in d.items() if not 
k.startswith("_")}

Review Comment:
   Not _required_, but this made debugging easier -  this excludes `__doc__` 
and `__builtins__` etc.



-- 
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]

Reply via email to