Sam Hulick
12/20/2021, 5:55 PMcurrentVersionOptions: {
provisionedConcurrentExecutions: 1,
},
I made that change to the sst.Function
, and it results in no changes to the stack 🤔p0wl
12/20/2021, 5:58 PMconst provisionedBaseHandler = new lambda.Alias(
this,
'BaseHandlerProvisioned',
{
aliasName: 'Provisioned',
version: baseHandler.currentVersion,
provisionedConcurrentExecutions: 1,
}
);
p0wl
12/20/2021, 5:59 PMbaseHandler
is your sst.Function())thdxr
12/20/2021, 5:59 PMSam Hulick
12/20/2021, 6:03 PMSam Hulick
12/20/2021, 6:09 PMfunc = new sst.Function(..)
) and then do func.currentVersion;
after that.Sam Hulick
12/20/2021, 6:09 PM