Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow module_refresh to also refresh available beacons #60542

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
ed304e1
Allow module_refresh to also refresh available beacons, eg. following…
garethgreenaway Jul 14, 2021
30bb5f7
removing tests/unit/test_minion.py since it was migrated to pytest.
garethgreenaway Jul 17, 2021
be7382b
Merge branch 'master' into 60541_allow_reload_modules_to_reload_beacons
garethgreenaway Jul 20, 2021
8054279
Merge branch 'master' into 60541_allow_reload_modules_to_reload_beacons
garethgreenaway Jul 23, 2021
1f230f2
Merge branch 'master' into 60541_allow_reload_modules_to_reload_beacons
garethgreenaway Jul 29, 2021
c660b4b
Merge branch 'master' into 60541_allow_reload_modules_to_reload_beacons
garethgreenaway Jul 31, 2021
3f69017
Merge branch 'master' into 60541_allow_reload_modules_to_reload_beacons
garethgreenaway Aug 2, 2021
b66b363
Merge branch 'master' into 60541_allow_reload_modules_to_reload_beacons
garethgreenaway Aug 3, 2021
3405d5e
Merge branch 'master' into 60541_allow_reload_modules_to_reload_beacons
garethgreenaway Aug 11, 2021
44ed42d
Merge branch 'master' into 60541_allow_reload_modules_to_reload_beacons
garethgreenaway Aug 16, 2021
18883c1
Merge branch 'master' into 60541_allow_reload_modules_to_reload_beacons
garethgreenaway Aug 17, 2021
e93ca94
Merge branch 'master' into 60541_allow_reload_modules_to_reload_beacons
garethgreenaway Aug 18, 2021
0230cd4
Merge branch 'master' into 60541_allow_reload_modules_to_reload_beacons
garethgreenaway Aug 23, 2021
de7f665
Merge branch 'master' into 60541_allow_reload_modules_to_reload_beacons
garethgreenaway Sep 20, 2021
8c2c42f
Fixing failing tests/unit/utils/test_gitfs.py tests now that tests/un…
garethgreenaway Sep 20, 2021
3fcd948
Merge branch 'master' into 60541_allow_reload_modules_to_reload_beacons
garethgreenaway Sep 20, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog/60541.added
@@ -0,0 +1 @@
Allow module_refresh to also refresh available beacons, eg. following a Python library being installed and "refresh_modules" being passed as an argument in a state.
2 changes: 2 additions & 0 deletions salt/minion.py
Expand Up @@ -2418,6 +2418,8 @@ def module_refresh(self, force_refresh=False, notify=False):
self.schedule.functions = self.functions
self.schedule.returners = self.returners

self.beacons_refresh()

def beacons_refresh(self):
"""
Refresh the functions and returners.
Expand Down