debug function should be called, not DEBUG
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Füleki Fábián 2020-03-31 23:34:48 +02:00
parent 76f359a444
commit b8fbbd9efb

16
app.py
View File

@ -26,9 +26,9 @@ def main():
r = redis.Redis(host = 'localhost', port = 6379, db = 0)
ip_list = os.environ['INITIAL_SERVERS'].split(',')
logging.DEBUG('Get consumer list from environ at first: Done')
logging.debug('Get consumer list from environ at first: Done')
consumer_list_redis = json.loads((r.get('consumer_list') or b'{}').decode('utf-8'))
logging.DEBUG('Get consumer list from redis at first: Done')
logging.debug('Get consumer list from redis at first: Done')
temp_dict = { }
for ip in ip_list:
@ -43,11 +43,11 @@ def main():
consumer_list_redis.update(temp_dict)
r.set('consumer_list', json.dumps(consumer_list_redis).encode('utf-8'))
logging.DEBUG('Update redis consumers ip list from first answers: Done')
logging.debug('Update redis consumers ip list from first answers: Done')
while True:
logging.DEBUG('Infinite Cycle start : Done')
logging.debug('Infinite Cycle start : Done')
consumer_list_redis = json.loads((r.get('consumer_list') or b'{}').decode('utf-8'))
logging.DEBUG('Get consumer list from redis: Done')
logging.debug('Get consumer list from redis: Done')
for uuid, info in consumer_list_redis.items():
ip = info['ip']
try:
@ -60,13 +60,11 @@ def main():
consumer_list_redis.update(temp_dict)
r.set('consumer_list', json.dumps(consumer_list_redis).encode('utf-8'))
logging.DEBUG('Update redis consumer ip list from answers: Done')
logging.debug('Update redis consumer ip list from answers: Done')
logging.DEBUG('Waiting for next turn')
logging.debug('Waiting for next turn')
time.sleep(30)
LOG.ERROR('While get rekt')
if __name__ == "__main__":
try: