Merge pull request #14077 from jacksontj/pubfilter

Change the defaults to be backwards compatible (fix #13285)
This commit is contained in:
Thomas S Hatch 2014-07-09 21:20:27 -06:00
commit 5008d8d750

View File

@ -374,7 +374,7 @@ DEFAULT_MINION_OPTS = {
'ping_interval': 0,
'username': None,
'password': None,
'zmq_filtering': True,
'zmq_filtering': False,
}
DEFAULT_MASTER_OPTS = {
@ -531,7 +531,7 @@ DEFAULT_MASTER_OPTS = {
'master_sign_pubkey': False,
'master_pubkey_signature': 'master_pubkey_signature',
'master_use_pubkey_signature': False,
'zmq_filtering': True,
'zmq_filtering': False,
}
# ----- Salt Cloud Configuration Defaults ----------------------------------->