Skip to content

Commit

Permalink
fix(ingest/starburst): parse create_time datetime format (#10345)
Browse files Browse the repository at this point in the history
  • Loading branch information
ishtartec committed Apr 22, 2024
1 parent 8d90c21 commit 725c858
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,8 @@ def _convert_str_to_datetime(self, v):
if isinstance(v, str):
isodate = parser.parse(v) # compatible with Python 3.6+
return isodate
if isinstance(v, datetime):
return v

def _get_joined_access_event(self, events):
joined_access_events = []
Expand Down

0 comments on commit 725c858

Please sign in to comment.