Erro configuração do SessionManager

Pessoal estou tentando configurar o SessionManager, segui os passos da documentação, mas ao executar um SessionManager.exe run local recebo um erro no terminal:

C:\Users\luan\Documents\BotCity>SessionManager.exe run local
--- Logging error ---
Traceback (most recent call last):
File "session_manager\cli\run.py", line 49, in async_local
File "session_manager\processes\hosts.py", line 63, in hosts_process
File "asyncio\tasks.py", line 639, in sleep
TypeError: '<=' not supported between instances of 'NoneType' and 'int'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "logging\handlers.py", line 1492, in emit
File "logging\handlers.py", line 1474, in prepare
File "logging\__init__.py", line 953, in format
File "logging\__init__.py", line 687, in format
File "logging\__init__.py", line 377, in getMessage
TypeError: not all arguments converted during string formatting
Call stack:
File "main.py", line 93, in <module>
File "typer\main.py", line 321, in __call__
File "click\core.py", line 1161, in __call__
File "typer\core.py", line 728, in main
File "typer\core.py", line 197, in _main
File "click\core.py", line 1697, in invoke
File "click\core.py", line 1697, in invoke
File "click\core.py", line 1443, in invoke
File "click\core.py", line 788, in invoke
File "typer\main.py", line 703, in wrapper
File "session_manager\cli\run.py", line 75, in local
File "asyncio\runners.py", line 190, in run
File "asyncio\runners.py", line 118, in run
File "asyncio\base_events.py", line 641, in run_until_complete
File "asyncio\windows_events.py", line 321, in run_forever
File "asyncio\base_events.py", line 608, in run_forever
File "asyncio\base_events.py", line 1936, in _run_once
File "asyncio\events.py", line 84, in _run
File "session_manager\cli\run.py", line 52, in async_local
File "logging\__init__.py", line 1524, in exception
File "logging\__init__.py", line 1518, in error
File "logging\__init__.py", line 1634, in _log
File "logging\__init__.py", line 1644, in handle
File "logging\__init__.py", line 1706, in callHandlers
File "logging\__init__.py", line 978, in handle
File "logging\handlers.py", line 1494, in emit
Message: 'Unhandled exception:'
Arguments: (TypeError("'<=' not supported between instances of 'NoneType' and 'int'"),)

O arquivo de log não tem nenhuma informação de erro:

2025-04-04 11:58:16,512 - output_logger - INFO - Starting Session Manager
2025-04-04 11:58:16,522 - output_logger - INFO - Trying to log in to BotCity Orchestrator.
2025-04-04 11:58:17,811 - output_logger - INFO - Login in BotCity Orchestrator successful!
2025-04-04 11:58:18,662 - output_logger - INFO - The SM will handle 1 hosts and 1 runners.
2025-04-04 11:58:18,671 - output_logger - INFO - Initializing Processing Hosts to 1
2025-04-04 11:58:18,672 - output_logger - INFO - Initializing Processing Runner to 1

Estou executando a versão 1.1.2 no windows 11, testado também no windows server 2025 apresentou exatamente o mesmo comportamento.

Alguma sugestão do que posso tentar fazer?