From d8216f2472a998b429d0329169b01f46e028789a Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 15 Sep 2017 11:14:00 -0400 Subject: [PATCH] Add another invalid UUID All spaces is yet another bad UUID that has cropped up... --- confluent_server/confluent/discovery/core.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/confluent_server/confluent/discovery/core.py b/confluent_server/confluent/discovery/core.py index 322f5a38..f15cb31f 100644 --- a/confluent_server/confluent/discovery/core.py +++ b/confluent_server/confluent/discovery/core.py @@ -163,7 +163,9 @@ def enrich_pxe_info(info): def uuid_is_valid(uuid): if not uuid: return False - return uuid.lower() not in ('00000000-0000-0000-0000-000000000000', 'ffffffff-ffff-ffff-ffff-ffffffffffff') + return uuid.lower() not in ('00000000-0000-0000-0000-000000000000', + 'ffffffff-ffff-ffff-ffff-ffffffffffff', + '20202020-2020-2020-2020-202020202020') def send_discovery_datum(info):