Re: [PR] Have `BaseOperator` get DAG from current task group if necessary [airflow]

2024-04-23 Thread via GitHub
sean-rose commented on PR #35968: URL: https://github.com/apache/airflow/pull/35968#issuecomment-2073586004 > @sean-rose can you fix the tests? Sure, I'll try to find some time soon to take a crack at that. -- This is an automated message from the Apache Git Service. To respond to

Re: [PR] Have `BaseOperator` get DAG from current task group if necessary [airflow]

2024-04-21 Thread via GitHub
eladkal commented on PR #35968: URL: https://github.com/apache/airflow/pull/35968#issuecomment-2067923087 @sean-rose can you fix the tests? -- 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

Re: [PR] Have `BaseOperator` get DAG from current task group if necessary [airflow]

2024-04-18 Thread via GitHub
github-actions[bot] commented on PR #35968: URL: https://github.com/apache/airflow/pull/35968#issuecomment-2065517466 This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 5 days if no further activity occurs. Thank you for

Re: [PR] Have `BaseOperator` get DAG from current task group if necessary [airflow]

2024-03-04 Thread via GitHub
uranusjr commented on PR #35968: URL: https://github.com/apache/airflow/pull/35968#issuecomment-1977501136 This sounds reasonable to me. Although the `dag=dag` approach is generally disfavoured nowadays, and you can always do ```python with dag, TaskGroup(...): ... ```

Re: [PR] Have `BaseOperator` get DAG from current task group if necessary [airflow]

2024-03-02 Thread via GitHub
github-actions[bot] commented on PR #35968: URL: https://github.com/apache/airflow/pull/35968#issuecomment-1974950291 This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 5 days if no further activity occurs. Thank you for

Re: [PR] Have `BaseOperator` get DAG from current task group if necessary [airflow]

2024-01-13 Thread via GitHub
github-actions[bot] commented on PR #35968: URL: https://github.com/apache/airflow/pull/35968#issuecomment-1890802459 This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 5 days if no further activity occurs. Thank you for

[PR] Have `BaseOperator` get DAG from current task group if necessary [airflow]

2023-11-29 Thread via GitHub
sean-rose opened a new pull request, #35968: URL: https://github.com/apache/airflow/pull/35968 If there isn't an active DAG context but there is an active task group context where the task group has an associated DAG, then currently operators won't get the DAG from the task