We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6e2fea commit 763a9b4Copy full SHA for 763a9b4
salt/master.py
@@ -167,6 +167,12 @@ def __init__(self, opts):
167
'''
168
Create a salt master server instance
169
170
+ # Warn if ZMQ < 3
171
+ if int(zmq.zmq_version()[0]) < 3:
172
+ log.warning('You have a version of ZMQ less than ZMQ 3! There are '
173
+ 'known connection keep-alive issues with ZMQ < 3 '
174
+ 'which may result in loss of contact with minions. '
175
+ 'Please upgrade your ZMQ!')
176
SMaster.__init__(self, opts)
177
178
def _clear_old_jobs(self):
0 commit comments