feat(gax): implement uploadChunk in HttpJsonResumableUploadClient - #14140
feat(gax): implement uploadChunk in HttpJsonResumableUploadClient#14140whowes wants to merge 1 commit into
Conversation
faf99d0 to
010c0aa
Compare
010c0aa to
baee7f0
Compare
|
/gemini review |
baee7f0 to
8a6d2fc
Compare
There was a problem hiding this comment.
Code Review
This pull request introduces support for transmitting individual chunks in a resumable upload session by adding ChunkUploadRequest and ChunkUploadResponse classes, implementing uploadChunkCallable() in HttpJsonResumableUploadClient, and adding corresponding unit tests. Feedback was provided to change the HTTP method in UPLOAD_CHUNK_DESCRIPTOR from POST to PUT to comply with the Google Scotty resumable upload protocol.
8a6d2fc to
1c123a9
Compare
|
|
|
❌ The last analysis has failed. |




This handles sending binary chunks and finalize commands over HTTP/JSON, extracting extracting offset and status from response headers/codes.