Change-Id: I7811acab85ad88f1c691034bb07cdc464ad5b2b1
Signed-off-by: Atul Agarwal <Atul.Agarwal@Altran.com>
# Check if kafka is ready
while(True):
port_in_use = False
- # Logic to check kafka is ready
- with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
- if s.connect_ex(("kafka", int(config.conf["message"].get("port")))) == 0:
- port_in_use = True
+ try:
+ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
+ if s.connect_ex(("kafka", int(config.conf["message"].get("port")))) == 0:
+ port_in_use = True
+ except Exception as e:
+ logging.info("Error when trying to get kafka status.")
+ logging.debug("Exception when trying to get kafka status: %s", str(e))
if port_in_use:
break
else: