fix: Construction of OIDC endpoint when rootPath has no trailing slash#718
Merged
fix: Construction of OIDC endpoint when rootPath has no trailing slash#718
Conversation
sbernauer
commented
Nov 22, 2024
Member
Author
This reverts commit 739d417.
Member
Author
This was referenced Nov 22, 2024
Member
Author
Techassi
requested changes
Nov 25, 2024
Member
Techassi
left a comment
There was a problem hiding this comment.
A bunch of small suggestions and notes. Note that some of these comments most likely also apply to other PRs listed in stackabletech/operator-rs#910.
Co-authored-by: Techassi <git@techassi.dev>
Techassi
reviewed
Nov 25, 2024
Co-authored-by: Techassi <git@techassi.dev>
Techassi
approved these changes
Nov 25, 2024
Merged
Member
|
Did this make it into 24.11? |
Member
Author
|
Nope, but it will be part of 24.11.1. Not sure what label we should use here ^^ |
Member
|
I think we should add a snippet to the 24.11.1 release notes for this (one entry for all of the affacted ones). Could you add a snippet here? |
Member
Author
|
Added a snippet to the tracking PR: stackabletech/operator-rs#910 (comment) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Fixes #716
Deploying nifi into the e2e-sec demo:
With
rootPath: /realms/demo0.0.0-dev:
https://85.215.194.243:30584/realms/.well-known/openid-configuration(obviously broken) => Caused by: org.springframework.web.client.HttpClientErrorException$NotFound: 404 Not Found: "{"error":"Realm does not exist"}"This PR:
https://85.215.194.243:30584/realms/demo/.well-known/openid-configuration=> Correct ✔️With
rootPath: /realms/demo/0.0.0-dev:
https://85.215.194.243:30584/realms/demo/.well-known/openid-configuration=> Correct ✔️This PR:
https://85.215.194.243:30584/realms/demo/.well-known/openid-configuration=> Correct ✔️Definition of Done Checklist