Skip to content

Commit ecb3b05

Browse files
committed
catch exception for key backfill
1 parent d708de3 commit ecb3b05

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/com/uid2/admin/Main.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,12 @@ public void run() {
292292
}
293293

294294
synchronized (writeLock) {
295+
try {
296+
cloudEncryptionKeyManager.backfillKeys();
297+
} catch (CloudStorageException e) {
298+
LOGGER.error("Failed to backfill cloud encryption keys", e);
299+
}
300+
295301
cloudEncryptionKeyManager.backfillKeys();
296302
rotatingCloudEncryptionKeyProvider.loadContent();
297303
}

0 commit comments

Comments
 (0)