Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
24c4c94
Upgrade teeny-request
danieljbruce Apr 15, 2026
fc3ba2f
fix: upgrade teeny-request
danieljbruce Apr 15, 2026
34c2950
Merge branch 'teeny-request-storage' of https://github.com/googleapis…
danieljbruce Apr 15, 2026
ee3aff4
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Apr 15, 2026
b9f1372
Merge branch 'teeny-request-storage' of https://github.com/googleapis…
gcf-owl-bot[bot] Apr 15, 2026
6f3d3b2
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Apr 15, 2026
f50e1ec
Merge branch 'teeny-request-storage' of https://github.com/googleapis…
gcf-owl-bot[bot] Apr 15, 2026
ece7bf5
Upgrade retry request
danieljbruce Apr 15, 2026
5771765
Undo unncessessary changes
danieljbruce Apr 15, 2026
5183f59
undo unwanted automatic change
danieljbruce Apr 15, 2026
4be117e
Undo missed changes
danieljbruce Apr 15, 2026
ad8cefc
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Apr 15, 2026
d5348e6
Merge branch 'teeny-request-storage' of https://github.com/googleapis…
gcf-owl-bot[bot] Apr 15, 2026
515158f
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Apr 15, 2026
3684fd2
Merge branch 'teeny-request-storage' of https://github.com/googleapis…
gcf-owl-bot[bot] Apr 15, 2026
b0bd787
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Apr 15, 2026
e2b31f9
Merge branch 'teeny-request-storage' of https://github.com/googleapis…
gcf-owl-bot[bot] Apr 15, 2026
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
Prev Previous commit
Next Next commit
Undo unncessessary changes
  • Loading branch information
danieljbruce committed Apr 15, 2026
commit 5771765908ae2d90820fcff8edc8f6d7ffa604e2
2 changes: 1 addition & 1 deletion handwritten/storage/src/bucket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1664,7 +1664,7 @@ class Bucket extends ServiceObject<Bucket, BucketMetadata> {
if (options.contexts) {
const validationError = handleContextValidation(
options.contexts,
callback,
callback
);
if (validationError) return validationError;
}
Expand Down
2 changes: 1 addition & 1 deletion handwritten/storage/src/file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1328,7 +1328,7 @@ class File extends ServiceObject<File, FileMetadata> {
if (options.contexts) {
const validationError = handleContextValidation(
options.contexts,
callback,
callback
);
if (validationError) return validationError;
}
Expand Down
8 changes: 4 additions & 4 deletions handwritten/storage/src/transfer-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ export class TransferManager {
let files: File[] = [];

const baseDestination = path.resolve(
options.passthroughOptions?.destination || '.',
options.passthroughOptions?.destination || '.'
);

if (!Array.isArray(filesOrFolder)) {
Expand Down Expand Up @@ -705,7 +705,7 @@ export class TransferManager {
await fsp.mkdir(path.dirname(destination), {recursive: true});

const resp = (await file.download(
passThroughOptionsCopy,
passThroughOptionsCopy
)) as DownloadResponseWithStatus;

finalResults[i] = {
Expand All @@ -723,7 +723,7 @@ export class TransferManager {
errorResp.error = err as Error;
finalResults[i] = errorResp;
}
}),
})
);
}

Expand Down Expand Up @@ -922,7 +922,7 @@ export class TransferManager {
promises = [];
}
promises.push(
limit(() => mpuHelper.uploadPart(partNumber++, curChunk, validation)),
limit(() => mpuHelper.uploadPart(partNumber++, curChunk, validation))
);
}
await Promise.all(promises);
Expand Down