We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d5cea0 commit 8af4566Copy full SHA for 8af4566
1 file changed
tests/k8s_lib_injection/utils.py
@@ -73,11 +73,11 @@ def run_https_probe_pod(
73
logs = ""
74
try:
75
logs = api.read_namespaced_pod_log(name=name, namespace=namespace)
76
- except Exception as e: # noqa: BLE001
+ except Exception as e:
77
logger.warning(f"[HTTPS probe] could not read probe pod logs: {e}")
78
return phase, logs
79
finally:
80
81
api.delete_namespaced_pod(name=name, namespace=namespace)
82
83
logger.warning(f"[HTTPS probe] could not delete probe pod: {e}")
0 commit comments