From 80a1bd72e7af61e97c29fb43d72d46eb7771f3c8 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 13 Jul 2018 15:43:09 -0400 Subject: [PATCH] Correct arguments for Thread constructor --- confluent_server/confluent/config/configmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/config/configmanager.py b/confluent_server/confluent/config/configmanager.py index 89df6b04..bf71a55d 100644 --- a/confluent_server/confluent/config/configmanager.py +++ b/confluent_server/confluent/config/configmanager.py @@ -1900,7 +1900,7 @@ class ConfigManager(object): # if the thread is exiting, join it to let it close, just in case if cls._cfgwriter is not None: cls._cfgwriter.join() - cls._cfgwriter = threading.Thread(target=cls._sync_to_file, args=fullsync) + cls._cfgwriter = threading.Thread(target=cls._sync_to_file, args=(fullsync,)) cls._cfgwriter.start() @classmethod