Skip to content

Commit

Permalink
FilterBlobContainer should delegate writeBlob(String, BytesReference,
Browse files Browse the repository at this point in the history
boolean)
  • Loading branch information
tlrx committed Sep 30, 2023
1 parent ccc896d commit 5e21c69
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ public void writeBlobAtomic(String blobName, BytesReference bytes, boolean failI
delegate.writeBlobAtomic(blobName, bytes, failIfAlreadyExists);
}

@Override
public void writeBlob(String blobName, BytesReference bytes, boolean failIfAlreadyExists) throws IOException {
delegate.writeBlob(blobName, bytes, failIfAlreadyExists);
}

@Override
public DeleteResult delete() throws IOException {
return delegate.delete();
Expand Down

0 comments on commit 5e21c69

Please sign in to comment.