Skip to content

Commit 7b59eb8

Browse files
Fix health check to check all app name ranges
1 parent 61452b7 commit 7b59eb8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

templates/health.js.j2

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ const config = {
4040
// Test app routing functionality
4141
async function testAppRouting() {
4242
const testDomains = [
43-
'web.' + config.app_domain,
44-
'test.' + config.app_domain,
45-
'app123.' + config.app_domain,
46-
'xyz99.' + config.app_domain
43+
'app.' + config.app_domain, // a -> lb-1
44+
'hello.' + config.app_domain, // h -> lb-2
45+
'test.' + config.app_domain, // t -> lb-3
46+
'web.' + config.app_domain // w -> lb-4
4747
];
4848

4949
const result = {

0 commit comments

Comments
 (0)