From 695e038ced695d35dbd605c08701fff9fa348898 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 24 Aug 2017 16:01:00 -0400 Subject: [PATCH] Skip attempt to fixup custom attributes --- confluent_server/confluent/config/configmanager.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/confluent_server/confluent/config/configmanager.py b/confluent_server/confluent/config/configmanager.py index 36291d37..55744109 100644 --- a/confluent_server/confluent/config/configmanager.py +++ b/confluent_server/confluent/config/configmanager.py @@ -227,6 +227,8 @@ def decrypt_value(cryptvalue, def fixup_attribute(attrname, attrval): # Normalize some data, for example strings and numbers to bool + if attrname.startswith('custom.'): + return attrval if attrname.startswith('net.'): # For net.* attribtues, split on the dots and put back together # longer term we might want a generic approach, but