bolkedebruin commented on code in PR #27540:
URL: https://github.com/apache/airflow/pull/27540#discussion_r1020358570
##########
tests/lineage/test_lineage.py:
##########
@@ -122,10 +130,7 @@ def test_lineage_render(self, dag_maker):
assert op1.inlets[0].url == f1s.format(DEFAULT_DATE)
assert op1.outlets[0].url == f1s.format(DEFAULT_DATE)
- def test_non_attr_outlet(self, dag_maker):
- class A:
- pass
Review Comment:
Non attr (or actually non serializable) inlets/outlets didn't work, they
were just ignored. I don't think that is correct behavioral integrity. This
leads to surprises where you supplied something as an outlet somewhere and made
it an inlet to something else and it never 'arrived' an you don't know why.
--
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]