From 8698814590cc2b5cac12b56ec878def610693dbf Mon Sep 17 00:00:00 2001 From: Sandy May <51717217+sandymay-dd@users.noreply.github.com> Date: Fri, 17 Jan 2025 12:11:15 +0000 Subject: [PATCH] DCMAW-11079: Open up Staging for testing --- backend-api/template.yaml | 14 +++++++------- backend-api/tests/infra-tests/application.test.ts | 8 ++++---- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/backend-api/template.yaml b/backend-api/template.yaml index 96f7b36f..9ace3461 100644 --- a/backend-api/template.yaml +++ b/backend-api/template.yaml @@ -61,8 +61,8 @@ Mappings: ApiBurstLimit: 10 ApiRateLimit: 10 staging: - ApiBurstLimit: 0 - ApiRateLimit: 0 + ApiBurstLimit: 10 + ApiRateLimit: 10 integration: ApiBurstLimit: 0 ApiRateLimit: 0 @@ -78,8 +78,8 @@ Mappings: ApiBurstLimit: 10 ApiRateLimit: 10 staging: - ApiBurstLimit: 0 - ApiRateLimit: 0 + ApiBurstLimit: 10 + ApiRateLimit: 10 integration: ApiBurstLimit: 0 ApiRateLimit: 0 @@ -95,8 +95,8 @@ Mappings: ApiBurstLimit: 10 ApiRateLimit: 10 staging: - ApiBurstLimit: 0 - ApiRateLimit: 0 + ApiBurstLimit: 10 + ApiRateLimit: 10 integration: ApiBurstLimit: 0 ApiRateLimit: 0 @@ -112,7 +112,7 @@ Mappings: ReservedConcurrentExecutions: 15 LogLevel: INFO staging: - ReservedConcurrentExecutions: 0 + ReservedConcurrentExecutions: 15 LogLevel: INFO integration: ReservedConcurrentExecutions: 0 diff --git a/backend-api/tests/infra-tests/application.test.ts b/backend-api/tests/infra-tests/application.test.ts index 28a81bc2..30933062 100644 --- a/backend-api/tests/infra-tests/application.test.ts +++ b/backend-api/tests/infra-tests/application.test.ts @@ -68,14 +68,14 @@ describe("Backend application infrastructure", () => { const expectedBurstLimits = { dev: 10, build: 10, - staging: 0, + staging: 10, integration: 0, production: 0, }; const expectedRateLimits = { dev: 10, build: 10, - staging: 0, + staging: 10, integration: 0, production: 0, }; @@ -261,7 +261,7 @@ describe("Backend application infrastructure", () => { const expectedBurstLimits = { dev: 10, build: 10, - staging: 0, + staging: 10, integration: 0, production: 0, }; @@ -269,7 +269,7 @@ describe("Backend application infrastructure", () => { const expectedRateLimits = { dev: 10, build: 10, - staging: 0, + staging: 10, integration: 0, production: 0, };