sjyangkevin commented on issue #56529: URL: https://github.com/apache/airflow/issues/56529#issuecomment-3388031564
Have a look at the logs ``` ... result = coerce_datetime(dt.datetime.fromtimestamp(timestamp, tz=utc)) TypeError: 'str' object cannot be interpreted as an integer The above exception was the direct cause of the following exception: ... ``` The function expects the `timestamp` to be of a type `int`. https://github.com/apache/airflow/blob/b7ea2a6fa5418862b93fcb11c75c02bef0f85c95/shared/timezones/src/airflow_shared/timezones/timezone.py#L292 However, maybe a type `str` is passed into the function 🤔 https://github.com/apache/airflow/blob/b7ea2a6fa5418862b93fcb11c75c02bef0f85c95/airflow-core/src/airflow/serialization/serialized_objects.py#L923-L924 -- 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]
