Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,6 @@ WriterFactory createFactory(Clock clock) {

@InternalApi
private static final class Factory implements WriterFactory {
private static final Decoder<WriteObjectResponse, BlobInfo>
WRITE_OBJECT_RESPONSE_BLOB_INFO_DECODER =
Conversions.grpc().blobInfo().compose(WriteObjectResponse::getResource);

private final int chunkSize;

Expand Down Expand Up @@ -172,7 +169,7 @@ public WritableByteChannelSession<?, BlobInfo> writeSession(
.setStartAsync(startResumableWrite)
.build();
})),
WRITE_OBJECT_RESPONSE_BLOB_INFO_DECODER);
Conversions.grpc().blobInfo().compose(WriteObjectResponse::getResource));
} else if (s instanceof StorageImpl) {
StorageImpl json = (StorageImpl) s;

Expand Down