From 43c60bc18034d85bb46e2a88d81ce0b49b41f47f Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 25 Oct 2017 16:16:00 -0400 Subject: [PATCH] Add another invalid uuid This is another uuid that will not be unique that may appear in some systems without a valid uuid. --- confluent_server/confluent/discovery/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/confluent_server/confluent/discovery/core.py b/confluent_server/confluent/discovery/core.py index 608cf248..c072bb77 100644 --- a/confluent_server/confluent/discovery/core.py +++ b/confluent_server/confluent/discovery/core.py @@ -169,6 +169,7 @@ def uuid_is_valid(uuid): return False return uuid.lower() not in ('00000000-0000-0000-0000-000000000000', 'ffffffff-ffff-ffff-ffff-ffffffffffff', + '00112233-4455-6677-8899-aabbccddeeff', '20202020-2020-2020-2020-202020202020')