instana-aws-lambda-auto-wrap
Advanced tools
Comparing version 1.88.1 to 1.89.0
{ | ||
"name": "instana-aws-lambda-auto-wrap", | ||
"version": "1.88.1", | ||
"version": "1.89.0", | ||
"description": "Automatically wrap AWS Lambdas for Instana tracing and monitoring without code modification.", | ||
@@ -57,3 +57,3 @@ "author": { | ||
"dependencies": { | ||
"@instana/aws-lambda": "^1.88.1" | ||
"@instana/aws-lambda": "^1.89.0" | ||
}, | ||
@@ -66,3 +66,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "fc6ff67e1ec8f697c4809eecabdbf61fbadec9e5" | ||
"gitHead": "62cc1aae3f75ca0399548a34e0be700ecb7f74f0" | ||
} |
@@ -42,3 +42,3 @@ 'use strict'; | ||
); | ||
const targetHandlerFunction = findHandlerFuntionOnModule(targetHandlerModule, targetHandlerFunctionName); | ||
const targetHandlerFunction = findHandlerFunctionOnModule(targetHandlerModule, targetHandlerFunctionName); | ||
@@ -104,5 +104,5 @@ if (!targetHandlerFunction) { | ||
function findHandlerFuntionOnModule(targetHandlerModuleObject, targetHandlerFunctionName) { | ||
function findHandlerFunctionOnModule(targetHandlerModuleObject, targetHandlerFunctionName) { | ||
const pathToFunction = targetHandlerFunctionName.split('.'); | ||
return pathToFunction.reduce((obj, pathFragment) => obj && obj[pathFragment], targetHandlerModuleObject); | ||
} |
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
6778
Updated@instana/aws-lambda@^1.89.0