Skip to content

Commit e98ec1c

Browse files
committed
Update GCS BlobContainer implementation because BlobContainer intefaced changed
See elastic/elasticsearch#8366
1 parent 15729fc commit e98ec1c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/org/elasticsearch/cloud/gce/blobstore/GoogleCloudStorageBlobContainer.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,8 @@ public OutputStream createOutput(String blobName) throws IOException {
9090
}
9191

9292
@Override
93-
public boolean deleteBlob(String blobName) throws IOException {
93+
public void deleteBlob(String blobName) throws IOException {
9494
blobStore.client().deleteBlob(blobStore.bucket(), buildKey(blobName));
95-
return true;
9695
}
9796

9897
@Override

0 commit comments

Comments
 (0)