ApnPushNotifcationScheduler: always run worker thread at least once

This commit is contained in:
Jonathan Klabunde Tomer
2023-06-02 10:44:04 -07:00
committed by Jon Chambers
parent 8579babde6
commit 099932ae68

View File

@@ -91,7 +91,7 @@ public class ApnPushNotificationScheduler implements Managed {
@Override
public void run() {
while (running.get()) {
do {
try {
final long entriesProcessed = processNextSlot();
@@ -101,7 +101,7 @@ public class ApnPushNotificationScheduler implements Managed {
} catch (Exception e) {
logger.warn("Exception while operating", e);
}
}
} while (running.get());
}
private long processNextSlot() {