Remove auto_session_tracking=False from sentry-init

The default is True.

It was copy-pasted from earlier integrations, but its exact origin (and
whether it is strictly needed) is unclear. Perhaps installation instructions
from (some) Sentry or Glitchtip?

We don't have explicit support for sessions, but I'm not clear enough on this
one to recommend against it either. And for our own usage, this provides a
way to get samples of session data in the playground/dogfood.
This commit is contained in:
Klaas van Schelven
2024-08-22 09:41:39 +02:00
parent ebd0a612d9
commit b9292291b5
-1
View File
@@ -63,7 +63,6 @@ if SENTRY_DSN is not None:
sentry_sdk.init(
dsn=SENTRY_DSN,
integrations=[DjangoIntegration()],
auto_session_tracking=False,
traces_sample_rate=0,
send_default_pii=True,
transport=MoreLoudlyFailingTransport,