New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@voodoo.io/aws-utils

Package Overview
Dependencies
Maintainers
7
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@voodoo.io/aws-utils - npm Package Compare versions

Comparing version 2.3.0 to 2.3.1

2

package.json
{
"name": "@voodoo.io/aws-utils",
"version": "2.3.0",
"version": "2.3.1",
"description": "AWS utils methods - using homemade retry system",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -106,3 +106,3 @@ /**

try {
const data = await utils.retry(this.cli.query.bind(this.cli), [params], this.retryMax);
const data = await utils.retry(this.cli.query.bind(this.cli), [params], true, this.retryMax);

@@ -359,2 +359,9 @@ if(!data.Items) return resolve(response);

const errObj = {
from: CLASS_NAME,
params: {
dynamo_table: dynamoTable,
entry_param: params
}
};
this.cli.update(param, async (err) => {

@@ -364,22 +371,10 @@ if (err) {

try {
await utils.retry(this.cli.update.bind(this.cli), [param], this.retryMax);
await utils.retry(this.cli.update.bind(this.cli), [param], true, this.retryMax);
return resolve()
} catch (err) {
err.more_infos_updateItem = {
from: CLASS_NAME,
params:{
dynamo_table: dynamoTable,
entry_param: params
}
};
err.more_infos_updateItem = errObj;
return reject(err)
}
}
err.more_infos_updateItem = {
from: CLASS_NAME,
params: {
dynamo_table: dynamoTable,
entry_param: params
}
};
err.more_infos_updateItem = errObj;
return reject(err)

@@ -386,0 +381,0 @@ }

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