fix
This commit is contained in:
parent
af1b0965a4
commit
57bb11797e
|
@ -129,4 +129,4 @@ X-Retry-On-Version-Conflict: retry; max-retries=100
|
|||
|
||||
# Controlling Delete with Expunge size
|
||||
|
||||
During the delete with expunge operation there is an internal synchronous search which locates all the resources to be deleted. The default maximum size of this search is 10000. This can be configured via the [Internal Synchronous Search Size](/hapi-fhir/apidocs/hapi-fhir-jpaserver-api/ca/uhn/fhir/jpa/api/config/DaoConfig.html#setInternalSynchronousSearchSize(int)) property.
|
||||
During the delete with expunge operation there is an internal synchronous search which locates all the resources to be deleted. The default maximum size of this search is 10000. This can be configured via the [Internal Synchronous Search Size](/hapi-fhir/apidocs/hapi-fhir-jpaserver-api/ca/uhn/fhir/jpa/api/config/DaoConfig.html#setInternalSynchronousSearchSize(java.lang.Integer)) property.
|
||||
|
|
|
@ -74,7 +74,6 @@ class DeleteExpungeServiceTest extends BaseJpaR4Test {
|
|||
Patient otherPatient = new Patient();
|
||||
myPatientDao.create(otherPatient);
|
||||
|
||||
|
||||
//When
|
||||
DeleteMethodOutcome deleteMethodOutcome = myPatientDao.deleteByUrl("Patient?" + JpaConstants.PARAM_DELETE_EXPUNGE + "=true", mySrd);
|
||||
IBundleProvider remaining = myPatientDao.search(new SearchParameterMap().setLoadSynchronous(true));
|
||||
|
|
Loading…
Reference in New Issue