mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-21 03:58:05 +01:00
ApnPushNotifcationScheduler: always run worker thread at least once
This commit is contained in:
committed by
Jon Chambers
parent
8579babde6
commit
099932ae68
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user