Skip to content
Open
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 @@ -102,9 +102,6 @@ protected UploadResponse doUpload(UploadRequest uploadRequest, InputStream input
throw new SubstrateSdkException("Request failed while uploading from input stream", e);
}
Blob blob = storage.get(getBucket(), uploadRequest.getKey());
if(blob == null) {
throw new SubstrateSdkException("Could not locate newly uploaded blob");
}
return transformer.toUploadResponse(blob);
}

Expand Down
Loading