We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41021ac commit 1fb7ce9Copy full SHA for 1fb7ce9
python/feldera/rest/_helpers.py
@@ -27,7 +27,11 @@ def requests_verify_from_env() -> str | bool:
27
if env_feldera_tls_insecure is None:
28
FELDERA_TLS_INSECURE = False
29
else:
30
- FELDERA_TLS_INSECURE = env_feldera_tls_insecure.strip().lower() in ("1", "true", "yes")
+ FELDERA_TLS_INSECURE = env_feldera_tls_insecure.strip().lower() in (
31
+ "1",
32
+ "true",
33
+ "yes",
34
+ )
35
36
requests_verify = not FELDERA_TLS_INSECURE
37
if FELDERA_HTTPS_TLS_CERT is not None:
0 commit comments