Skip to content

Commit 2ca868c

Browse files
committed
fix: Send sentry.python as auth header instead of sentry-python to align with JS
1 parent b998906 commit 2ca868c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/transport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class HttpTransport(Transport):
8989
def __init__(self, options):
9090
Transport.__init__(self, options)
9191
self._worker = BackgroundWorker()
92-
self._auth = self.parsed_dsn.to_auth("sentry-python/%s" % VERSION)
92+
self._auth = self.parsed_dsn.to_auth("sentry.python/%s" % VERSION)
9393
self._pool = _make_pool(
9494
self.parsed_dsn,
9595
http_proxy=options["http_proxy"],

0 commit comments

Comments
 (0)