diff --git a/bubble-server/src/main/java/bubble/service/notify/NotificationService.java b/bubble-server/src/main/java/bubble/service/notify/NotificationService.java index f89ff8f8..71327b1e 100644 --- a/bubble-server/src/main/java/bubble/service/notify/NotificationService.java +++ b/bubble-server/src/main/java/bubble/service/notify/NotificationService.java @@ -139,8 +139,8 @@ public class NotificationService { return null; } - private final Map syncRequests = new ExpirationMap<>(SECONDS.toMillis(160)); - private final Map syncRequestCache = new ExpirationMap<>(SECONDS.toMillis(150)); + private final Map syncRequests = new ExpirationMap<>(SECONDS.toMillis(20)); + private final Map syncRequestCache = new ExpirationMap<>(SECONDS.toMillis(15)); public T notifySync(BubbleNode delegate, NotificationType type, SynchronousNotification notification) { final String cacheKey = notification.getCacheKey(delegate, type);