Skip to content

Commit ef09ce6

Browse files
committed
Update test server port
1 parent 9d985f7 commit ef09ce6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev-packages/node-integration-tests/suites/tracing/postgres-native/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
restart: always
77
container_name: integration-tests-postgres-native
88
ports:
9-
- '5444:5432'
9+
- '5434:5432'
1010
environment:
1111
POSTGRES_USER: test
1212
POSTGRES_PASSWORD: test

dev-packages/node-integration-tests/suites/tracing/postgres-native/scenario.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ setInterval(() => {}, 1000);
1414
const { native } = require('pg');
1515
const { Client } = native;
1616

17-
const client = new Client({ port: 5444, user: 'test', password: 'test', database: 'tests' });
17+
const client = new Client({ port: 5434, user: 'test', password: 'test', database: 'tests' });
1818

1919
async function run() {
2020
await Sentry.startSpan(

0 commit comments

Comments
 (0)