From bf030c0f0021cb87bc098ce77d12d82cebe5b427 Mon Sep 17 00:00:00 2001 From: "Antoine R. Dumont (@ardumont)" <antoine.romain.dumont@gmail.com> Date: Fri, 15 Nov 2019 11:24:21 +0100 Subject: [PATCH] gnu.lister: Use url as primary key Otherwise, we are failing unicity constraint. Related to T2070 --- swh/lister/gnu/lister.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swh/lister/gnu/lister.py b/swh/lister/gnu/lister.py index c7c6ad6c..0e99a58a 100644 --- a/swh/lister/gnu/lister.py +++ b/swh/lister/gnu/lister.py @@ -97,7 +97,7 @@ class GNULister(SimpleLister): """ return { - 'uid': repo['name'], + 'uid': repo['url'], 'name': repo['name'], 'full_name': repo['name'], 'html_url': repo['url'], -- GitLab