subhramit commented on code in PR #71976:
URL: https://github.com/apache/airflow/pull/71976#discussion_r3997765515


##########
providers/influxdb/src/airflow/providers/influxdb/operators/influxdb3.py:
##########
@@ -49,24 +53,50 @@ def __init__(
         *,
         sql: str,
         influxdb3_conn_id: str = "influxdb3_default",
+        deferrable: bool = conf.getboolean("operators", "default_deferrable", 
fallback=False),
         **kwargs,
     ) -> None:
         super().__init__(**kwargs)
         self.influxdb3_conn_id = influxdb3_conn_id
         self.sql = sql
+        self.deferrable = deferrable
 
-    def execute(self, context: Context) -> list[dict[str, Any]]:
+    def execute(self, context: Context) -> list[dict[str, Any]] | None:

Review Comment:
   Correct.
   Removed.



##########
providers/influxdb/src/airflow/providers/influxdb/utils.py:
##########


Review Comment:
   Renamed. Thanks



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