You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run tasks in parallel, even if the user waits for some time to confirm the prompt
Steps to Reproduce
Steps to reproduce the behavior:
Run the plan above
Wait for 3 minutes before answer the promt with y
run ss -atp | grep :ssh | grep ESTAB | grep bolt to see the number of ssh sessions
Environment
Version 3.30.0
Ubuntu 22.04
Additional Context
target group size 30 - 200
bolt-project.yaml
concurrency: 20plugin-cache:
ttl: 1800
debug log
When the bug occurs only one Worker is logging like number 19 in this example.
On good runs there is more than one runner executing the tasks.
2024-11-27T11:25:39.658054 INFO [exec-worker-19] [Bolt::Executor] Running task execute' on ["target.host.example.local"]
2024-11-27T11:25:39.658169 DEBUG [exec-worker-19] [Bolt::Transport::SSH] Running task 'execute' on target.host.example.local with '{redacted}'
2024-11-27T11:25:43.817602 INFO [exec-worker-19] [Bolt::Executor] {"target":"target.host.example.local","action":"task","object":"execute","status":"success","value":{redacted}}
2024-11-27T11:25:43.818384 INFO [exec-worker-19] [Bolt::Executor] Running task execute' on ["another_target.host.example.local"]
2024-11-27T11:25:43.819116 DEBUG [exec-worker-19] [Bolt::Transport::SSH] Running task 'execute' on another_target.host.example.local with '{redacted}'
The text was updated successfully, but these errors were encountered:
Describe the Bug
I have a plan that first gathers data, shows the data to the user and then promt whether to to continue to
run_task_with
.If the user confirms the promt immediately (<2min) the tasks called by
run_task_with
run in parallel as expected.If the user waits longer than 2 minutes to confirm the dialog, the subsequent tasks run sequentially.
This is the structure of the plan in Question
Expected Behavior
Run tasks in parallel, even if the user waits for some time to confirm the prompt
Steps to Reproduce
Steps to reproduce the behavior:
y
ss -atp | grep :ssh | grep ESTAB | grep bolt
to see the number of ssh sessionsEnvironment
Version 3.30.0
Ubuntu 22.04
Additional Context
bolt-project.yaml
debug log
When the bug occurs only one Worker is logging like number 19 in this example.
On good runs there is more than one runner executing the tasks.
The text was updated successfully, but these errors were encountered: