Fix event bus flood caused by unexpected recursive call.

This commit is contained in:
C. R. Oldham 2016-03-12 11:30:22 -07:00 committed by rallytime
parent 1be9c91761
commit 6c2ef03b11

View file

@ -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)