Skip to content

Commit 8853b0f

Browse files
committed
fix: remove deprecated sentry tracing flag
Refs: NS-193
1 parent 7336354 commit 8853b0f

3 files changed

Lines changed: 0 additions & 4 deletions

File tree

.env.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ SECRET_KEY=xxx
1717

1818
SENTRY_DSN=https://abcdefg@your.sentry.here/999
1919
SENTRY_ENVIRONMENT=dev
20-
SENTRY_ENABLE_TRACING=0
2120
SENTRY_TRACES_SAMPLE_RATE=0.1
2221

2322
ALLOWED_HOSTS=*

docker-compose.env.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ SECRET_KEY=xxx
1717

1818
SENTRY_DSN=https://abcdefg@your.sentry.here/999
1919
SENTRY_ENVIRONMENT=dev
20-
SENTRY_ENABLE_TRACING=0
2120
SENTRY_TRACES_SAMPLE_RATE=0.1
2221

2322
ALLOWED_HOSTS=*

notification_service/settings.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
QURIIRI_REPORT_URL=(str, ""),
3737
SECRET_KEY=(str, ""),
3838
SENTRY_DSN=(str, None),
39-
SENTRY_ENABLE_TRACING=(bool, False),
4039
SENTRY_ENVIRONMENT=(str, ""),
4140
SENTRY_TRACES_SAMPLE_RATE=(float, 0.1),
4241
SOCIAL_AUTH_TUNNISTAMO_KEY=(str, "KEY_UNSET"),
@@ -86,7 +85,6 @@
8685
dsn=env.str("SENTRY_DSN"),
8786
release=REVISION,
8887
environment=env("SENTRY_ENVIRONMENT"),
89-
enable_tracing=env.bool("SENTRY_ENABLE_TRACING"),
9088
traces_sample_rate=env.float("SENTRY_TRACES_SAMPLE_RATE"),
9189
integrations=[DjangoIntegration()],
9290
)

0 commit comments

Comments
 (0)