hussein-awala commented on issue #34483:
URL: https://github.com/apache/airflow/issues/34483#issuecomment-1726526268

   Looks like the problem is in pytz package; by running this small code, we 
find that there is a lot of missing short codes:
   ```python
   import pytz
   
   for tz in pytz.all_timezones:
       print(tz)
   ```
   
   The best option is using the long name instead in the serialized values, and 
this will not affect the deserialization of the serialized dates which we could 
deserialize now, but for the broken dates, I think there is no solution (except 
if we can find a package which knows all the short codes)
   
   @Taragolis wdyt?


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