Skip to content

Commit d50cf3f

Browse files
authored
feat: disable client reports by default (#1194)
1 parent 54bc81c commit d50cf3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ A major release `N` implies the previous release `N-1` will no longer receive up
2323
## Unreleased
2424

2525
- No longer set the last event id for transactions #1186
26-
- Added support for client reports #1181
26+
- Added support for client reports (disabled by default for now) #1181
2727

2828
## 1.3.1
2929

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(
7676
traces_sampler=None, # type: Optional[TracesSampler]
7777
auto_enabling_integrations=True, # type: bool
7878
auto_session_tracking=True, # type: bool
79-
send_client_reports=True, # type: bool
79+
send_client_reports=False, # type: bool
8080
_experiments={}, # type: Experiments # noqa: B006
8181
):
8282
# type: (...) -> None

0 commit comments

Comments
 (0)