-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicate Port Number in Fhir Requests #13
Comments
Usually, the FHIR server provides the link to the next page in the What FHIR server are you using? Can you please check what |
Hi, sorry for the delay. The returned bundle contains a fully functional next link (see below). It looks to me like the Bundle's definition already returns the wrong URL
|
Hello again :),
I'm facing the problem, that FHIRExtinguisher tries to fetch linked resources by a non valid URL. The port extension
:443
gets duplicated.FHIRExtinguisher tries to request from the URL https://our.fhir.server:443:443/fhir?_getpages=12345...
After some digging in the sources, I found that the
nextUrl
returned bybundleWrapper.link.find { it.relation == "next" }?.url
already is broken.For a quick fix, I wrote the following patch:
Do you know what goes wrong here? Thank you for your support!
The text was updated successfully, but these errors were encountered: