Skip to content

Commit

Permalink
Merge pull request #1430 from SAP/fix/lowercase_fallback_service_plan
Browse files Browse the repository at this point in the history
Change fallback plan from "APPLICATION" to "application"
  • Loading branch information
finkmanAtSap committed Jan 12, 2024
2 parents dab6574 + 6317163 commit 43beab4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static OAuth2ServiceConfigurationBuilder mapToOAuth2ServiceConfigurationB
OAuth2ServiceConfigurationBuilder builder = OAuth2ServiceConfigurationBuilder.forService(service)
.withProperties(credentials.getEntries(String.class))
.withProperty(NAME, b.getName().orElse(""))
.withProperty(SERVICE_PLAN, b.getServicePlan().orElse(ServiceConstants.Plan.APPLICATION.name()));
.withProperty(SERVICE_PLAN, b.getServicePlan().orElse(ServiceConstants.Plan.APPLICATION.toString()));

if (IAS.equals(service)) {
parseDomains(builder, credentials);
Expand Down

0 comments on commit 43beab4

Please sign in to comment.