diff --git a/fivetran_provider_async/operators.py b/fivetran_provider_async/operators.py index e00187b..68803ba 100644 --- a/fivetran_provider_async/operators.py +++ b/fivetran_provider_async/operators.py @@ -31,6 +31,8 @@ class FivetranOperator(BaseOperator): airflow trigger.`FivetranOperator` requires that you specify the `connector_id` of the sync job to start. You can find `connector_id` in the Settings page of the connector you configured in the `Fivetran dashboard `_. + If you do not want to run `FivetranOperator` in async mode you can set `deferrable` to + False in operator. :param fivetran_conn_id: `Conn ID` of the Connection to be used to configure the hook. :param fivetran_retry_limit: # of retries when encountering API errors diff --git a/fivetran_provider_async/sensors.py b/fivetran_provider_async/sensors.py index 52abdc0..0019d61 100644 --- a/fivetran_provider_async/sensors.py +++ b/fivetran_provider_async/sensors.py @@ -21,6 +21,8 @@ class FivetranSensor(BaseSensorOperator): connectors. `FivetranSensor` requires that you specify the `connector_id` of the sync job to start. You can find `connector_id` in the Settings page of the connector you configured in the `Fivetran dashboard `_. + If you do not want to run `FivetranSensor` in async mode you can set `deferrable` to + False in sensor. :param fivetran_conn_id: `Conn ID` of the Connection to be used to configure