Fix possible dlist sync crash, improved debugging.

Fixes #12795
This commit is contained in:
Greyson Parrelli
2023-02-22 14:18:20 -05:00
parent b689ea62a6
commit 691ab353da
4 changed files with 89 additions and 42 deletions

View File

@@ -69,6 +69,10 @@ public class SignalStorageManifest {
}
}
public Map<Integer, List<StorageId>> getStorageIdsByType() {
return storageIdsByType;
}
public byte[] serialize() {
List<ManifestRecord.Identifier> ids = new ArrayList<>(storageIds.size());