ffinfo commented on a change in pull request #4396: [WIP][AIRFLOW-3585] - Add
edges to database
URL: https://github.com/apache/airflow/pull/4396#discussion_r255300487
##########
File path: airflow/jobs.py
##########
@@ -1906,12 +1906,15 @@ def __init__(
:param args:
:param kwargs:
"""
+ if donot_pickle is None:
+ self.donot_pickle = configuration.getboolean("core",
"donot_pickle")
Review comment:
din't know that, fixed that now. Also I now did remove the of statement and
replaced this by:
```
self.donot_pickle = donot_pickle or configuration.conf.getboolean("core",
"donot_pickle")
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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