mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix event bus flood caused by unexpected recursive call.
This commit is contained in:
parent
1be9c91761
commit
6c2ef03b11
1 changed files with 2 additions and 1 deletions
|
@ -1379,7 +1379,8 @@ class Minion(MinionBase):
|
|||
# in the setup process, but we can't load grains for proxies until
|
||||
# we talk to the device we are proxying for. So force a grains
|
||||
# sync here.
|
||||
self.functions['saltutil.sync_grains'](saltenv='base')
|
||||
# Hmm...We can't seem to sync grains here, makes the event bus go nuts
|
||||
# self.functions['saltutil.sync_grains'](saltenv='base')
|
||||
else:
|
||||
self.functions, self.returners, _ = self._load_modules(force_refresh, notify=notify)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue