Files
Guimu 9d2273e8a7 fix: fix InputStream leak in OIDC client HTTP operations (#14728)
OidcClientContext.discover() and OidcTokenHolder.fetchToken() obtain
InputStreams from HttpURLConnection.getInputStream() and getErrorStream()
but never explicitly close them after reading. Wrap these streams in
try-with-resources to ensure proper cleanup.
2026-03-31 09:53:20 +08:00
..