Taragolis commented on issue #27384:
URL: https://github.com/apache/airflow/issues/27384#issuecomment-1297030268

   @josepaul1988 I could be wrong but seems like you tried to pass class Retry 
instead of Retry object
   
   Could you try to do something like that:
   
   ```python
         ...
         if idx == 0:
             retry = Retry(initial=10, maximum=10, multiplier=1.0, 
deadline=600)  # or whatever parameters you need
             PubSubHook().acknowledge(
                 subscription=SNOW_SUBSCRIPTION,
                 project_id=PROJECT_ID, 
                 ack_ids=ack_id_list,
                 retry=retry,
                 timeout=10
             )     
   ```


-- 
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]

Reply via email to