We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41ec797 commit d9d979fCopy full SHA for d9d979f
.streamlit/secrets-EXAMPLE.toml
@@ -6,4 +6,4 @@ my_user_id = 234567
6
my_token = "YYY"
7
my_refresh_token = "ZZZ"
8
9
-sentry_dns = "https://ingest.de.sentry.io"
+sentry_dsn = "https://ingest.de.sentry.io"
src/main.py
@@ -39,7 +39,7 @@ def init_sentry() -> None:
39
import sentry_sdk # noqa: PLC0415
40
41
sentry_sdk.init(
42
- dsn=st.secrets["sentry_dns"],
+ dsn=st.secrets["sentry_dsn"],
43
environment=st.session_state["ENV"],
44
send_default_pii=True,
45
traces_sample_rate=0.0,
0 commit comments