You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Druid query timezone
# tz.tzutc() : Using utc timezone
# tz.tzlocal() : Using local timezone
# other tz can be overridden by providing a local_config
DRUID_IS_ACTIVE = True
DRUID_TZ = tz.tzutc()
I was expecting that changing this param would change global TZ to defined one.
I tried setting DRUID_TZ = tz.tzstr('Europe/Warsaw') but it looks that there's no effect on queries/displayed data - all times are still UTC
The text was updated successfully, but these errors were encountered:
As can be seen in https://github.com/airbnb/caravel/blob/master/caravel/config.py:
I was expecting that changing this param would change global TZ to defined one.
I tried setting
DRUID_TZ = tz.tzstr('Europe/Warsaw')
but it looks that there's no effect on queries/displayed data - all times are still UTCThe text was updated successfully, but these errors were encountered: