[Netfilter] Wait for Redis instead of exiting with an exception

master
André 2018-07-24 23:30:18 +02:00
parent 5cb8df3f11
commit 240eb3abce
1 changed files with 10 additions and 1 deletions

View File

@ -14,7 +14,16 @@ import time
import json
import iptc
r = redis.StrictRedis(host=os.getenv('IPV4_NETWORK', '172.22.1') + '.249', decode_responses=True, port=6379, db=0)
while True:
try:
r = redis.StrictRedis(host=os.getenv('IPV4_NETWORK', '172.22.1') + '.249', decode_responses=True, port=6379, db=0)
r.ping()
except Exception as ex:
print '%s - trying again in 3 seconds' % (ex)
time.sleep(3)
else:
break
pubsub = r.pubsub()
RULES = {}