Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feat][broker][PIP-195] Implement BookkeeperBucketSnapshotStorage - part3 #17677

Merged
merged 9 commits into from
Dec 20, 2022
Prev Previous commit
Next Next commit
Update pulsar-broker/src/main/java/org/apache/pulsar/broker/delayed/b…
…ucket/BookkeeperBucketSnapshotStorage.java
  • Loading branch information
coderzc authored Nov 21, 2022
commit 33dfa1a9dbb4f1669cedfa075e78533779af6f12
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private SnapshotMetadata parseSnapshotMetadataEntry(LedgerEntry ledgerEntry) {
try {
return SnapshotMetadata.parseFrom(ledgerEntry.getEntry());
} catch (InvalidProtocolBufferException e) {
throw new RuntimeException(e);
throw new BucketSnapshotException(e);
}
}

Expand Down