feluelle commented on a change in pull request #7099: [AIRFLOW-6507] Replace
the use of imp.load_source with another solution.
URL: https://github.com/apache/airflow/pull/7099#discussion_r364201480
##########
File path: airflow/models/dagbag.py
##########
@@ -248,7 +247,7 @@ def process_file(self, filepath, only_if_updated=True,
safe_mode=True):
with timeout(self.DAGBAG_IMPORT_TIMEOUT):
try:
- m = imp.load_source(mod_name, filepath)
+ m = importlib.machinery.SourceFileLoader(mod_name,
filepath).load_module()
Review comment:
Actually you then also need to call
https://docs.python.org/3/library/importlib.html#importlib.abc.Loader.create_module
first.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services