From b1018d648e0118b4a07f5d4787336a3addb3480c Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 26 Jul 2023 16:05:29 -0400 Subject: [PATCH] Hook loading of /etc/confluent/authorization.yaml This should permit custom roles to be defined. --- confluent_server/confluent/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/confluent_server/confluent/main.py b/confluent_server/confluent/main.py index b0f2ee71..f59bceb7 100644 --- a/confluent_server/confluent/main.py +++ b/confluent_server/confluent/main.py @@ -306,6 +306,7 @@ def run(args): except AttributeError: pass # Windows... os.umask(oumask) + auth.check_for_yaml() collective.startup() consoleserver.initialize() http_bind_host, http_bind_port = _get_connector_config('http')