BREAKING_CHANGE(routing): refactor route configuration to support multiple targets
Some checks failed
Default (tags) / security (push) Successful in 55s
Default (tags) / test (push) Failing after 31m9s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped

This commit is contained in:
Juergen Kunz
2025-07-21 08:45:13 +00:00
parent 6aa5f415c1
commit e9c753d2a9
51 changed files with 2914 additions and 157 deletions

View File

@@ -40,7 +40,7 @@ tap.test('keepalive support - verify keepalive connections are properly handled'
match: { ports: 8590 },
action: {
type: 'forward',
target: { host: 'localhost', port: 9998 }
targets: [{ host: 'localhost', port: 9998 }]
}
}],
keepAlive: true,
@@ -117,7 +117,7 @@ tap.test('keepalive support - verify keepalive connections are properly handled'
match: { ports: 8591 },
action: {
type: 'forward',
target: { host: 'localhost', port: 9998 }
targets: [{ host: 'localhost', port: 9998 }]
}
}],
keepAlive: true,
@@ -178,7 +178,7 @@ tap.test('keepalive support - verify keepalive connections are properly handled'
match: { ports: 8592 },
action: {
type: 'forward',
target: { host: 'localhost', port: 9998 }
targets: [{ host: 'localhost', port: 9998 }]
}
}],
keepAlive: true,