Skip to content

Commit

Permalink
fix(aws): Move relay to port 5333 to avoid collisions (#6093)
Browse files Browse the repository at this point in the history
  • Loading branch information
sl0thentr0py committed Nov 2, 2022
1 parent 06c1a6f commit aba4469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/serverless/src/awslambda.ts
Expand Up @@ -64,7 +64,7 @@ function extensionRelayDSN(originalDsn: string | undefined): string | undefined

const dsn = dsnFromString(originalDsn);
dsn.host = 'localhost';
dsn.port = '3000';
dsn.port = '5333';
dsn.protocol = 'http';

return dsnToString(dsn);
Expand Down

0 comments on commit aba4469

Please sign in to comment.