This is an automated email from the ASF dual-hosted git repository. gopidesu pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push: new b070c3a9974 Fix docstring typo in dag_processing/manager.py (#52266) b070c3a9974 is described below commit b070c3a99742fc0dd725f44dc8a6459a16ceb7ae Author: Shahar Epstein <60007259+shah...@users.noreply.github.com> AuthorDate: Thu Jun 26 12:34:54 2025 +0300 Fix docstring typo in dag_processing/manager.py (#52266) --- airflow-core/src/airflow/dag_processing/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow-core/src/airflow/dag_processing/manager.py b/airflow-core/src/airflow/dag_processing/manager.py index 36b1bf3e478..aebba824231 100644 --- a/airflow-core/src/airflow/dag_processing/manager.py +++ b/airflow-core/src/airflow/dag_processing/manager.py @@ -151,7 +151,7 @@ class DagFileProcessorManager(LoggingMixin): over again, but no more often than the specified interval. :param max_runs: The number of times to parse each file. -1 for unlimited. - :param bundles_names_to_parse: List of bundle names to parse. If None, all bundles are parsed. + :param bundle_names_to_parse: List of bundle names to parse. If None, all bundles are parsed. :param processor_timeout: How long to wait before timing out a DAG file processor """