Skip to content
Snippets Groups Projects
Verified Commit 7ff13903 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

maven: Fix last update datetime

We need to avoid using naive datetime as this fails during conversion.

Related to T3746
Related to P1280
parent d4e1e821
No related branches found
Tags v2.6.3
No related merge requests found
......@@ -313,7 +313,7 @@ class MavenLister(Lister[MavenListerState, RepoPage]):
lister_id=self.lister_obj.id,
url=page["url"],
visit_type=page["type"],
last_update=last_update_dt,
last_update=last_update_dt_tz,
extra_loader_arguments={
"artifacts": [
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment