mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-19 18:08:03 +01:00
Fix number of accounts processed counter
This commit is contained in:
@@ -78,9 +78,10 @@ public class EncryptDeviceCreationTimestampCommand extends AbstractSinglePassCra
|
||||
log.warn("Failed to encrypt creation timestamp on device {}, account {}", device.getId(), account.getUuid(), throwable);
|
||||
return Mono.empty();
|
||||
});
|
||||
}, MAX_CONCURRENCY),
|
||||
}, MAX_CONCURRENCY)
|
||||
.then()
|
||||
.doOnSuccess(_ -> processedAccountCounter.increment()),
|
||||
MAX_CONCURRENCY)
|
||||
.doOnComplete(processedAccountCounter::increment)
|
||||
.then()
|
||||
.block();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user