This commit is contained in:
Tadgh 2021-05-13 15:46:26 -04:00
parent af1b0965a4
commit 57bb11797e
2 changed files with 1 additions and 2 deletions

View File

@ -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.

View File

@ -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));