uranusjr commented on code in PR #43902:
URL: https://github.com/apache/airflow/pull/43902#discussion_r1839361473


##########
providers/src/airflow/providers/apache/druid/transfers/hive_to_druid.py:
##########
@@ -94,7 +94,7 @@ def __init__(
         self.sql = sql
         self.druid_datasource = druid_datasource
         self.ts_dim = ts_dim
-        self.intervals = intervals or ["{{ ds }}/{{ tomorrow_ds }}"]
+        self.intervals = intervals or ["{{ ds }}"]

Review Comment:
   Hmm… we need to make this work across versions. Maybe something like this:
   
   ```suggestion
           self.intervals = intervals or ["{{ ds }}/{{ logical_date.add_days(1) 
| ds }}"]
   ```



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