Skip to content

Commit 6816244

Browse files
committed
fix: update test database connection to use port 9200
- Change default Elasticsearch port from 9201 to 9200 in test-db.ts - Aligns with simplified Docker configuration using standard ports - 176 tests now passing (up from 84)
1 parent b1bf095 commit 6816244

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test-db.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export function getApiVersion(): string {
3636
export function getClient(): Client {
3737
if (!client) {
3838
client = new Client({
39-
node: process.env.ELASTICSEARCH_URL || 'http://localhost:9201',
39+
node: process.env.ELASTICSEARCH_URL || 'http://localhost:9200',
4040
})
4141
}
4242

0 commit comments

Comments
 (0)