Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ operate:
profile: oidc
enabled: true
base-url: http://localhost:8081
auth-url: http://localhost:18080/auth/realms/camunda-platform/openid-connect/token
auth-url: http://localhost:18080/auth/realms/camunda-platform/protocol/openid-connect/token
audience: operate-api

Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ void shouldApplyProfiles() throws MalformedURLException {
assertThat(properties.enabled()).isEqualTo(true);
assertThat(properties.authUrl())
.isEqualTo(
URI.create("http://localhost:18080/auth/realms/camunda-platform/openid-connect/token")
URI.create(
"http://localhost:18080/auth/realms/camunda-platform/protocol/openid-connect/token")
.toURL());
}
}