-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Fix "is-a" ValueSet expansion and add "descendent-of" support #5603
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
Conversation
This reverts commit 46c672b.
* fix default partition setting on resource * changelog * Handle DEFAULT partition in rule checker. * Fix spotless --------- Co-authored-by: Michael Buckley <michaelabuckley@gmail.com> Co-authored-by: James Agnew <jamesagnew@gmail.com>
Co-authored-by: Long Ma <long@smilecdr.com>
* fix default partition setting on resource * Handle DEFAULT partition in rule checker. Co-authored-by: Ken Stevens <khstevens@gmail.com>
…5611) * Add setting to make broker not use JacksonMessageConverter * Add changelog * Implement suggestions --------- Co-authored-by: juan.marchionatto <juan.marchionatto@smilecdr.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. Going to have a few more people internally have a look, but its likely we can get this merged for 7.0.0. Can you please re-target this MR to rel_7_0
branch?
Failures here:
|
@ohetrifork I have cloned your work and made a repo-local copy(#5669) just for ease of merging as i deal with conflicts and spotless resolution. I have also attributed you in the changelog, and in our developers section. Please let me know if you do not want this, and I can remove your attribution. Otherwise I will get this merged ASAP |
Closing this as the other has merged. |
Cool @tadgh, thanks for helping out |
Hi,
We're implementing validation for an custom implementation guide (IG) using HAPI FHIR. The IG contain ValueSets that are defined using "descendent-of" and "is-a" relations, using codes from a custom code system. To that end, we have identified a couple of issues with the HAPI FHIR ValueSet expansion:
hapi-fhir/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/TermReadSvcImpl.java
Line 1595 in 9e20659
So far we have solved the problem locally using a classpath override of the TermReadSvcImpl class, but we would like to avoid that going forward.