Unverified Commit 204bb35a authored by Dan Jones's avatar Dan Jones
Browse files

fix: don't specify worker count for config watcher

We will need to test how this scales with added clients
2 merge requests!23Resolve "Release v0.1.0",!20Resolve "Use ThreadPoolExecutor in place of ProcessPoolExecutor"
Pipeline #110204 passed with stages
in 59 seconds
......@@ -49,7 +49,7 @@ class ConfigHandler(FileSystemEventHandler):
def update_clients(updated_client_ids):
global RUNNING_CLIENTS
with concurrent.futures.ThreadPoolExecutor(max_workers=5) as executor:
with concurrent.futures.ThreadPoolExecutor() as executor:
logging.debug("Old: " + str(RUNNING_CLIENTS))
logging.debug("New: " + str(updated_client_ids))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment