Skip to content

Commit

Permalink
Fix a potential deadlock
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesagnew committed Aug 5, 2017
1 parent ee360f5 commit 4543408
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -104,8 +104,9 @@ public synchronized List<IBaseResource> getUndeliveredResourcesAndPurge(Long the
return retVal;
}

@Transactional(propagation = Propagation.NOT_SUPPORTED)
public int pollForNewUndeliveredResources() {
return pollForNewUndeliveredResources((String) null);
return pollForNewUndeliveredResources(null);
}

@Override
Expand Down

0 comments on commit 4543408

Please sign in to comment.