Upgrade GC storage and big query with updated patches (#31297)

GitOrigin-RevId: ff1432f4194c3529ebf6090d1f93dbed38539014
This commit is contained in:
Anna Claire Fields
2026-02-10 14:05:01 +01:00
committed by Copybot
parent 44ecee821d
commit 72f8dff76d
17 changed files with 826 additions and 564 deletions

View File

@@ -0,0 +1,22 @@
diff --git a/node_modules/retry-request/index.js b/node_modules/retry-request/index.js
index 298a351..7ec1ef8 100644
--- a/node_modules/retry-request/index.js
+++ b/node_modules/retry-request/index.js
@@ -185,7 +185,7 @@ function retryRequest(requestOpts, opts, callback) {
.on('complete', (...params) => handleFinish(params))
.on('finish', (...params) => handleFinish(params));
- requestStream.pipe(delayStream);
+ pipeline(requestStream, delayStream, () => {});
} else {
activeRequest = opts.request(requestOpts, onResponse);
}
@@ -251,7 +251,7 @@ function retryRequest(requestOpts, opts, callback) {
// No more attempts need to be made, just continue on.
if (streamMode) {
retryStream.emit('response', response);
- delayStream.pipe(retryStream);
+ pipeline(delayStream, retryStream, () => {});
requestStream.on('error', err => {
retryStream.destroy(err);
});