Bump the zmq timeout on these nagios checks.

This commit is contained in:
Ralph Bean 2014-05-22 14:56:41 +00:00
parent da642af5fd
commit b90bf85b3d
3 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@ try:
poller = zmq.Poller()
poller.register(s, zmq.POLLIN)
timeout = 10000
timeout = 20000
events = dict(poller.poll(timeout))
if s in events and events[s] == zmq.POLLIN: