From 3a66e7464ebc3304f127b651baf057fe4b0d0c6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tao=20Bror=20Bojl=C3=A9n?= Date: Fri, 1 Mar 2019 14:42:05 +0000 Subject: [PATCH] fix duplicates in instance peers --- backend/scraper/management/commands/scrape.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/scraper/management/commands/scrape.py b/backend/scraper/management/commands/scrape.py index ddd0fea..e150bba 100644 --- a/backend/scraper/management/commands/scrape.py +++ b/backend/scraper/management/commands/scrape.py @@ -76,8 +76,8 @@ class Command(BaseCommand): if response.status_code != 200 or not isinstance(peers, list) or get_key(peers, ['error']): raise InvalidResponseException("Could not get peers for {}".format(instance_name)) # Get rid of peers that just say "null" and the instance itself - # Also make sure to lowercase all instance names; otherwise there'll be some duplicates - return [peer.lower() for peer in peers if peer and peer != instance_name] + # Also make sure to lowercase all instance names and remove duplicates + return list(set([peer.lower() for peer in peers if peer and peer != instance_name])) @staticmethod def get_statuses(instance_name: str):