amoghrajesh commented on code in PR #59883: URL: https://github.com/apache/airflow/pull/59883#discussion_r2667200580
########## airflow-core/src/airflow/listeners/spec/asset.py: ########## Review Comment: I think I have it at a state now where I am mostly happy with it. Investigated all call sites of the specs and arrived at this conclusion: | Spec | Location | Called from SDK? | Called from Core? | |---------------|----------|------------------|-------------------| | lifecycle | Shared | Yes | Yes | | taskinstance | Shared | Yes | Yes | | dagrun | Core | No | Yes | | asset | Core | No | Yes | | importerrors | Core | No | Yes | The specs have been moved to the relevant sites now. For example, sdk only has lifecycle and taskinstance which it consumes from shared because its also used in core, a better example would probably be `asset` - only used in core, stays in core -- 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]
