Skip to content

Commit 34d983c

Browse files
authored
Update serverless-saas-stack.ts (aws-samples#57)
Python runtime change from 3.8 to 3.9 in order to ensure consistent deployment of the serverless-saas-pipeline deploy phase
1 parent 5e79259 commit 34d983c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/TenantPipeline/lib/serverless-saas-stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export class ServerlessSaaSStack extends cdk.Stack {
3131

3232
const lambdaFunction = new Function(this, "deploy-tenant-stack", {
3333
handler: "lambda-deploy-tenant-stack.lambda_handler",
34-
runtime: Runtime.PYTHON_3_8,
34+
runtime: Runtime.PYTHON_3_9,
3535
code: new AssetCode(`./resources`),
3636
memorySize: 512,
3737
timeout: Duration.seconds(10),

0 commit comments

Comments
 (0)