Closed shuvaevv closed 1 year ago
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you all sign our Contributor License Agreement before we can accept your contribution.
1 out of 2 committers have signed the CLA.
:white_check_mark: shuvaevv
:x: Valentin Shuvaev
Fix the
DummyStatsLogger
import.Closes: #40
This bug appeared because DummyStatsLogger was renamed to NullStatsLogger in airflow 2.6.0.
The import of the
DummyStatsLogger
is try-excepted, so theDummyStatsLogger
class is None. It leads to theAttributeError: 'NoneType' object has no attribute 'incr'
.