Replace bare except: clause with specific exception handling in run_kraken.py #1129
Closed as duplicate of#1069
except: clause with specific exception handling in run_kraken.py #1129
Summary
There is a bare
except:clause inrun_kraken.pyat line 173 that catches all exceptions indiscriminately, includingSystemExitandKeyboardInterrupt. This violates Python best practices (PEP 8) and can mask important errors during Kubernetes client initialization.