lambda-serverless-api
Advanced tools
Comparing version 10.1.1 to 10.1.2
@@ -34,3 +34,9 @@ import crypto from 'crypto'; | ||
storage.list(interval), | ||
storage.set(`${prefix}${crypto.randomBytes(16).toString('hex')}.json.gz`, data) | ||
storage.set(`${prefix}${ | ||
data?.event?.requestContext?.requestId === undefined | ||
? crypto.randomBytes(16) | ||
: crypto.createHash('md5').update( | ||
data?.event?.requestContext?.requestId | ||
).digest('hex') | ||
}.json.gz`, data) | ||
]); | ||
@@ -37,0 +43,0 @@ if (keys.length >= globalLimit) { |
@@ -42,3 +42,3 @@ { | ||
}, | ||
"version": "10.1.1", | ||
"version": "10.1.2", | ||
"scripts": { | ||
@@ -45,0 +45,0 @@ "clean": "rm -rf lib", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
99136
2901