Island: Fix a bug where agent run threads won't start

This commit is contained in:
vakarisz 2022-05-11 11:10:45 +03:00
parent aa159a4240
commit 30fb57c37f
1 changed files with 2 additions and 0 deletions

View File

@ -92,6 +92,8 @@ class AWSService:
)
)
[thread.start() for thread in command_threads]
for thread in command_threads:
thread.join()