Skip to content

Commit aba4469

Browse files
authored
fix(aws): Move relay to port 5333 to avoid collisions (#6093)
fixes #5412 goes with getsentry/action-build-aws-lambda-extension#6
1 parent 06c1a6f commit aba4469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/serverless/src/awslambda.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function extensionRelayDSN(originalDsn: string | undefined): string | undefined
6464

6565
const dsn = dsnFromString(originalDsn);
6666
dsn.host = 'localhost';
67-
dsn.port = '3000';
67+
dsn.port = '5333';
6868
dsn.protocol = 'http';
6969

7070
return dsnToString(dsn);

0 commit comments

Comments
 (0)