You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/12/15 23:50:33 UTC

[GitHub] [airflow] kaxil commented on a change in pull request #19984: Add timeout parameter to druid operator so it can be used in hook

kaxil commented on a change in pull request #19984:
URL: https://github.com/apache/airflow/pull/19984#discussion_r770123630



##########
File path: airflow/providers/apache/druid/operators/druid.py
##########
@@ -31,6 +31,10 @@ class DruidOperator(BaseOperator):
     :param druid_ingest_conn_id: The connection id of the Druid overlord which
         accepts index jobs
     :type druid_ingest_conn_id: str
+    :param timeout: The interval between polling
+                the Druid job for the status of the ingestion job.
+                Must be greater than or equal to 1
+    :type timeout: int

Review comment:
       ```suggestion
       :param timeout: The interval (in seconds) between polling the Druid job for the status
           of the ingestion job. Must be greater than or equal to 1
       :type timeout: int
   ```




-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org