Socket
Socket
Sign inDemoInstall

google-gax

Package Overview
Dependencies
Maintainers
4
Versions
362
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-gax - npm Package Compare versions

Comparing version 4.3.3 to 4.3.4

3

build/src/streamingCalls/streaming.js

@@ -75,3 +75,3 @@ "use strict";

if (resumptionRetryArgument !== undefined) {
retryArgument = retry.getResumptionRequestFn(retryArgument);
retryArgument = resumptionRetryArgument;
}

@@ -314,2 +314,3 @@ }

else {
this.retries++;
retryStream = this.retry(stream, retry);

@@ -316,0 +317,0 @@ this.stream = retryStream;

@@ -88,4 +88,7 @@ "use strict";

delayStream.pipe(retryStream);
requestStream.on('error', (err) => {
retryStream.destroy(err);
requestStream.on('error', () => {
// retryStream must be destroyed here for the stream handoff part of retries to function properly
// but the error event should not be passed - if it emits as part of .destroy()
// it will bubble up early to the caller
retryStream.destroy();
});

@@ -92,0 +95,0 @@ }

{
"name": "google-gax",
"version": "4.3.3",
"version": "4.3.4",
"description": "Google API Extensions",

@@ -24,3 +24,3 @@ "main": "build/src/index.js",

"uuid": "^9.0.1",
"protobufjs": "7.2.6"
"protobufjs": "7.3.0"
},

@@ -27,0 +27,0 @@ "devDependencies": {

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc