mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
Log max_workers, useful to know
This commit is contained in:
@@ -69,6 +69,7 @@ class Manager(object):
|
||||
manager_config = self.config.get('manager', {})
|
||||
max_workers = manager_config.get('max_workers', 1) \
|
||||
if max_workers is None else max_workers
|
||||
self.log.info('__init__: max_workers=%d', max_workers)
|
||||
if max_workers > 1:
|
||||
self._executor = ThreadPoolExecutor(max_workers=max_workers)
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user