Fix a potential deadlock

This commit is contained in:
James 2017-08-05 06:55:50 -04:00
parent ee360f5376
commit 4543408dc8
1 changed files with 2 additions and 1 deletions

View File

@ -104,8 +104,9 @@ public class FhirResourceDaoSubscriptionR4 extends FhirResourceDaoR4<Subscriptio
return retVal;
}
@Transactional(propagation = Propagation.NOT_SUPPORTED)
public int pollForNewUndeliveredResources() {
return pollForNewUndeliveredResources((String) null);
return pollForNewUndeliveredResources(null);
}
@Override