-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Fix minion start retry on Windows (2016.3) #33285
Conversation
@twangboy : Looking at the code, I can't see how moving this code down:
Would change the behavior. Could you explain? |
@twangboy : Starting in 2016.3, there is a configuration way of fixing this issue. If you add this to the minion config file, it will work:
This is what my company does for this issue. It also works well when using multi-master since it will properly round-robin the various masters. One way of solving this issue is by making this the configuration default in |
@skizunov I implemented your fix. Thanks for the help! |
@cachedout This can now be merged when tests pass if you're good with it |
@twangboy Looking... |
* upstream/develop: (23 commits) Don't merge-forward the change to salt/scripts.py Cleanup comments in smbios.get output (fixes saltstack#33266) (saltstack#33306) Back-port saltstack#32993 to 2016.3 (saltstack#33304) Fix iptables --match-set (saltstack#23643) (saltstack#33314) Improve package verification documentation Accept verify_options and ignore_types as a comma-separated list Fix minion start retry on Windows (2016.3) (saltstack#33285) update 2015.8.9 release notes (saltstack#33310) Added some more docs for master and minion config settings (saltstack#33292) linux_acl: Allow '-' as a separation character in ACL permissions. Fixes saltstack#31270 (saltstack#33172) (saltstack#33305) Server Density agentv2 support (saltstack#32772) (saltstack#33303) man pages updated (saltstack#33307) Fix iptables --match-set (saltstack#23643) (saltstack#33301) Handle more ipv6 error as an exception saltstack#33299 (saltstack#33300) Ignore retcode when checking service's status (saltstack#33294) fix "loose" typo (saltstack#33290) Fix minion start retry on Windows Add auth_tries config option to minion.rst docs (saltstack#33287) Document new master and minion config opts for 2016.3.0 Document minion_id_caching config value (saltstack#33282) ...
What does this PR do?
Fixes problem where minion would try to connect to the master 7 times and then fail
What issues does this PR fix or reference?
#33277
Previous Behavior
Minion would try to connect to the master 7 times and then fail.
New Behavior
Minion continues to try to connect to the master.... forever...
Tests written?
No