Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move relay to port 5333 to avoid collisions #1716

Merged
merged 2 commits into from Nov 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/init_serverless_sdk.py
Expand Up @@ -21,7 +21,7 @@
def extension_relay_dsn(original_dsn):
dsn = Dsn(original_dsn)
dsn.host = "localhost"
dsn.port = 3000
dsn.port = 5333
dsn.scheme = "http"
return str(dsn)

Expand Down
2 changes: 1 addition & 1 deletion sentry_sdk/integrations/pure_eval.py
Expand Up @@ -116,7 +116,7 @@ def start(n):
return (n.lineno, n.col_offset)

nodes_before_stmt = [
node for node in nodes if start(node) < stmt.last_token.end
node for node in nodes if start(node) < stmt.last_token.end # type: ignore
]
if nodes_before_stmt:
# The position of the last node before or in the statement
Expand Down