Remove accidental double initialization
This commit is contained in:
parent
f8c03a3c37
commit
731658eef8
|
@ -351,7 +351,6 @@ public abstract class BaseSubscriptionInterceptor<S extends IBaseResource> exten
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("unused")
|
@SuppressWarnings("unused")
|
||||||
@Scheduled(fixedDelay = 60000)
|
@Scheduled(fixedDelay = 60000)
|
||||||
@PostConstruct
|
|
||||||
public void initSubscriptions() {
|
public void initSubscriptions() {
|
||||||
if (!myInitSubscriptionsSemaphore.tryAcquire()) {
|
if (!myInitSubscriptionsSemaphore.tryAcquire()) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue