Merge branch 'master' of github.com:jamesagnew/hapi-fhir
This commit is contained in:
commit
8c7f065440
|
@ -70,7 +70,7 @@ public class FhirResourceDaoR4ReferentialIntegrityTest extends BaseJpaR4Test {
|
|||
myOrganizationDao.delete(oid);
|
||||
fail();
|
||||
} catch (ResourceVersionConflictException e) {
|
||||
assertEquals("Unable to delete Organization/"+oid.getIdPart()+" because at least one resource has a reference to this resource. First reference found was resource Organization/"+oid.getIdPart()+" in path Patient.managingOrganization", e.getMessage());
|
||||
assertEquals("Unable to delete Organization/"+oid.getIdPart()+" because at least one resource has a reference to this resource. First reference found was resource Patient/"+pid.getIdPart()+" in path Patient.managingOrganization", e.getMessage());
|
||||
}
|
||||
|
||||
myPatientDao.delete(pid);
|
||||
|
|
|
@ -14,6 +14,7 @@ import ca.uhn.fhir.jpa.provider.r4.JpaSystemProviderR4;
|
|||
import ca.uhn.fhir.jpa.provider.r4.TerminologyUploaderProviderR4;
|
||||
import ca.uhn.fhir.jpa.search.DatabaseBackedPagingProvider;
|
||||
import ca.uhn.fhir.jpa.util.ResourceProviderFactory;
|
||||
import ca.uhn.fhir.jpa.subscription.SubscriptionInterceptorLoader;
|
||||
import ca.uhn.fhir.narrative.DefaultThymeleafNarrativeGenerator;
|
||||
import ca.uhn.fhir.rest.api.EncodingEnum;
|
||||
import ca.uhn.fhir.rest.server.*;
|
||||
|
@ -222,6 +223,12 @@ public class TestRestfulServer extends RestfulServer {
|
|||
* Spool results to the database
|
||||
*/
|
||||
setPagingProvider(myAppCtx.getBean(DatabaseBackedPagingProvider.class));
|
||||
|
||||
/*
|
||||
* Register subscription interceptors
|
||||
*/
|
||||
SubscriptionInterceptorLoader subscriptionInterceptorLoader = myAppCtx.getBean(SubscriptionInterceptorLoader.class);
|
||||
subscriptionInterceptorLoader.registerInterceptors();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -194,6 +194,10 @@
|
|||
Validation errors were fixed when using a Questionnaire with enableWhen on a question that
|
||||
contains sub-items.
|
||||
</action>
|
||||
<action type="fix">
|
||||
Fixed "because at least one resource has a reference to this resource" delete error message that mistakingly reported
|
||||
the target instead of the source with the reference.
|
||||
</action>
|
||||
</release>
|
||||
<release version="3.7.0" date="2019-02-06" description="Gale">
|
||||
<action type="add">
|
||||
|
|
Loading…
Reference in New Issue