From d199f124b8e972fccaa64137f4c438b689ff89e2 Mon Sep 17 00:00:00 2001 From: Florian Pitance <54334437+fl0ppy-d1sk@users.noreply.github.com> Date: Tue, 15 Nov 2022 16:27:31 +0100 Subject: [PATCH] remove exits in ingress controller --- src/autoconf/IngressController.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/autoconf/IngressController.py b/src/autoconf/IngressController.py index e0692725c..a11003f05 100644 --- a/src/autoconf/IngressController.py +++ b/src/autoconf/IngressController.py @@ -270,12 +270,10 @@ class IngressController(Controller, ConfigCaller): self.__logger.error( f"Exception while reading k8s event (type = {watch_type}) :\n{format_exc()}", ) - sys_exit(1) except: self.__logger.error( f"Unknown exception while reading k8s event (type = {watch_type}) :\n{format_exc()}", ) - sys_exit(2) finally : if locked: self.__internal_lock.release()