Skip to content

Commit

Permalink
DCMAW-11079: Open up Staging for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
sandymay-dd committed Jan 17, 2025
1 parent d3ce486 commit 8698814
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions backend-api/template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ Mappings:
ApiBurstLimit: 10
ApiRateLimit: 10
staging:
ApiBurstLimit: 0
ApiRateLimit: 0
ApiBurstLimit: 10
ApiRateLimit: 10
integration:
ApiBurstLimit: 0
ApiRateLimit: 0
Expand All @@ -78,8 +78,8 @@ Mappings:
ApiBurstLimit: 10
ApiRateLimit: 10
staging:
ApiBurstLimit: 0
ApiRateLimit: 0
ApiBurstLimit: 10
ApiRateLimit: 10
integration:
ApiBurstLimit: 0
ApiRateLimit: 0
Expand All @@ -95,8 +95,8 @@ Mappings:
ApiBurstLimit: 10
ApiRateLimit: 10
staging:
ApiBurstLimit: 0
ApiRateLimit: 0
ApiBurstLimit: 10
ApiRateLimit: 10
integration:
ApiBurstLimit: 0
ApiRateLimit: 0
Expand All @@ -112,7 +112,7 @@ Mappings:
ReservedConcurrentExecutions: 15
LogLevel: INFO
staging:
ReservedConcurrentExecutions: 0
ReservedConcurrentExecutions: 15
LogLevel: INFO
integration:
ReservedConcurrentExecutions: 0
Expand Down
8 changes: 4 additions & 4 deletions backend-api/tests/infra-tests/application.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Expand Down Expand Up @@ -261,15 +261,15 @@ 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,
};
Expand Down

0 comments on commit 8698814

Please sign in to comment.