This is an automated email from the ASF dual-hosted git repository.
mthomsen pushed a commit to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/support/nifi-1.x by this push:
new 627fa06866 NIFI-13379 Replaced use of deprecated
com.nimbusds.oauth2.sdk.http.HTTPResponse method getContentAsJSONObject with
API suggested replacement getBodyAsJSONObject.
627fa06866 is described below
commit 627fa06866e7f8bca8e2504a8e4027ee6568392d
Author: dan-s1 <[email protected]>
AuthorDate: Mon Jun 10 15:56:32 2024 +0000
NIFI-13379 Replaced use of deprecated
com.nimbusds.oauth2.sdk.http.HTTPResponse method getContentAsJSONObject with
API suggested replacement getBodyAsJSONObject.
This closes #8944
Signed-off-by: Mike Thomsen <[email protected]>
---
.../web/security/authentication/oidc/StandardOidcIdentityProvider.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/nifi-registry/nifi-registry-core/nifi-registry-web-api/src/main/java/org/apache/nifi/registry/web/security/authentication/oidc/StandardOidcIdentityProvider.java
b/nifi-registry/nifi-registry-core/nifi-registry-web-api/src/main/java/org/apache/nifi/registry/web/security/authentication/oidc/StandardOidcIdentityProvider.java
index e70f696604..e83cba3daf 100644
---
a/nifi-registry/nifi-registry-core/nifi-registry-web-api/src/main/java/org/apache/nifi/registry/web/security/authentication/oidc/StandardOidcIdentityProvider.java
+++
b/nifi-registry/nifi-registry-core/nifi-registry-web-api/src/main/java/org/apache/nifi/registry/web/security/authentication/oidc/StandardOidcIdentityProvider.java
@@ -255,7 +255,7 @@ public class StandardOidcIdentityProvider implements
OidcIdentityProvider {
throw new IOException("Unable to download OpenId Connect Provider
metadata from " + url + ": Status code " + httpResponse.getStatusCode());
}
- final JSONObject jsonObject = httpResponse.getContentAsJSONObject();
+ final JSONObject jsonObject = httpResponse.getBodyAsJSONObject();
return OIDCProviderMetadata.parse(jsonObject);
}