From 203a99d4c0b129f3ed38307885da95c70acf1a49 Mon Sep 17 00:00:00 2001 From: Guillaume George Date: Wed, 13 Feb 2019 10:06:57 +0900 Subject: [PATCH] Update Sentry.Config moduledoc 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 :sweat_smile: ) --- lib/sentry/config.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sentry/config.ex b/lib/sentry/config.ex index 2918704b..82b5cdc0 100644 --- a/lib/sentry/config.ex +++ b/lib/sentry/config.ex @@ -2,7 +2,7 @@ defmodule Sentry.Config do @moduledoc """ This module provides the functionality for fetching configuration settings and their defaults. - 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. + 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. """ @default_included_environments [:dev, :test, :prod]