You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would suggest this edit because I think it can be an easy mistake to copy paste the tuple, change the env var and forget about the quotes (it happened to me 😅 )
Copy file name to clipboardExpand all lines: lib/sentry/config.ex
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ defmodule Sentry.Config do
2
2
@moduledoc"""
3
3
This module provides the functionality for fetching configuration settings and their defaults.
4
4
5
-
Sentry supports loading config at runtime, via `{:system, SYSTEM_ENV_KEY}` tuples, where Sentry will read `SYSTEM_ENV_KEY` to get the config value from the system environment at runtime.
5
+
Sentry supports loading config at runtime, via `{:system, "SYSTEM_ENV_KEY"}` tuples, where Sentry will read `SYSTEM_ENV_KEY` to get the config value from the system environment at runtime.
0 commit comments