We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I'm reposting the issue here as it hasn't been fixed yet. sst/sst#3887
I use the datadog-cdk-constructs-v2 livrairie to automatically add the Datadog layer and extension to all the lambdas in my Stack.
` app.setDefaultFunctionProps({ runtime: "nodejs20.x", });
app.node.children.forEach((stack) => { const datadog = new DatadogLambda(stack, "datadog", { nodeLayerVersion: 115, extensionLayerVersion: 65, });
datadog.addLambdaFunctions(stack.getAllFunctions()); } });
`
We do have the nodejs20.x for Lambdas but wrong nodejs version in layer cause SST Function hardcodes the runtime to nodejs18.x
The text was updated successfully, but these errors were encountered:
Happy to look at a PR for this.
Sorry, something went wrong.
No branches or pull requests
Hello,
I'm reposting the issue here as it hasn't been fixed yet.
sst/sst#3887
I use the datadog-cdk-constructs-v2 livrairie to automatically add the Datadog layer and extension to all the lambdas in my Stack.
` app.setDefaultFunctionProps({
runtime: "nodejs20.x",
});
app.node.children.forEach((stack) => {
const datadog = new DatadogLambda(stack, "datadog", {
nodeLayerVersion: 115,
extensionLayerVersion: 65,
});
`
We do have the nodejs20.x for Lambdas but wrong nodejs version in layer cause SST Function hardcodes the runtime to nodejs18.x
The text was updated successfully, but these errors were encountered: