From 78d2b811c7018420ea7b897b24d60c666748cb91 Mon Sep 17 00:00:00 2001 From: boraberke Date: Thu, 25 Apr 2024 23:09:22 +0300 Subject: [PATCH] Fix `LivyOperator` retry_args and deferrable docs --- airflow/providers/apache/livy/operators/livy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/providers/apache/livy/operators/livy.py b/airflow/providers/apache/livy/operators/livy.py index b761118a5ce25..789deb230529f 100644 --- a/airflow/providers/apache/livy/operators/livy.py +++ b/airflow/providers/apache/livy/operators/livy.py @@ -61,8 +61,8 @@ class LivyOperator(BaseOperator): depends on the option that's being modified. :param extra_headers: A dictionary of headers passed to the HTTP request to livy. :param retry_args: Arguments which define the retry behaviour. + See Tenacity documentation at https://github.com/jd/tenacity :param deferrable: Run operator in the deferrable mode - See Tenacity documentation at https://github.com/jd/tenacity """ template_fields: Sequence[str] = ("spark_params",)