Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

fix: ISSUE-639 enabled reuse of https sockets in the aws-sdk #640

Merged
merged 2 commits into from
Jun 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions auditLogMover/serverless.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ provider:
CLOUDWATCH_EXECUTION_LOG_GROUP: !ImportValue CloudwatchAccessLogGroup-${opt:stage, self:provider.stage}
AUDIT_LOGS_BUCKET: !Ref AuditLogsBucket
STAGE: ${opt:stage, self:provider.stage}
AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1'
variableSyntax: "\\${((?!AWS)[ ~:a-zA-Z0-9._@'\",\\-\\/\\(\\)]+?)}" # Use this for allowing CloudFormation Pseudo-Parameters in your serverless.yml
iamRoleStatements:
- Action:
Expand Down
1 change: 1 addition & 0 deletions serverless.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ provider:
ENABLE_MULTI_TENANCY: !Ref EnableMultiTenancy
ENABLE_SUBSCRIPTIONS: !Ref EnableSubscriptions
LOG_LEVEL: '${self:custom.logLevel}'
AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1'
apiKeys:
- name: 'developer-key-${self:custom.stage}' # Full name must be known at package-time
description: Key for developer to access the FHIR Api
Expand Down