There is issue [1] with reactor in salt 2017, one of the workarounds is to set reactor workers to 1 [1] https://github.com/saltstack/salt/issues/47539 Change-Id: I47d76cc1dc5d0afe6d8b215e2d32cdbab3ac1a8c Related-Prod: https://mirantis.jira.com/browse/PROD-21463pull/73/head
@@ -1,5 +1,9 @@ | |||
{% from "salt/map.jinja" import master with context %} | |||
{%- if master.reactor_worker_threads is defined %} | |||
reactor_worker_threads: {{ master.reactor_worker_threads }} | |||
{%- endif %} | |||
reactor: | |||
{%- for event, reactors in master.reactor.items() %} | |||
- {{ event }}: |
@@ -8,6 +8,7 @@ salt: | |||
master: | |||
command_timeout: 5 | |||
worker_threads: 2 | |||
reactor_worker_threads: 2 | |||
enabled: true | |||
source: | |||
engine: pkg |