mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Don't discard running beacons config when listing becaons (#35174)
Refs #34827
This commit is contained in:
parent
3754550dd2
commit
67d8dd0fd0
1 changed files with 2 additions and 1 deletions
|
@ -140,7 +140,8 @@ class Beacon(object):
|
|||
# Fire the complete event back along with the list of beacons
|
||||
evt = salt.utils.event.get_event('minion', opts=self.opts)
|
||||
b_conf = self.functions['config.merge']('beacons')
|
||||
evt.fire_event({'complete': True, 'beacons': b_conf},
|
||||
self.opts['beacons'].update(b_conf)
|
||||
evt.fire_event({'complete': True, 'beacons': self.opts['beacons']},
|
||||
tag='/salt/minion/minion_beacons_list_complete')
|
||||
|
||||
return True
|
||||
|
|
Loading…
Add table
Reference in a new issue