Skip to content

Commit

Permalink
🔧 Add missing envvar help texts
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenbal committed Aug 23, 2024
1 parent 284d454 commit 2efd209
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions open_api_framework/conf/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ def init_sentry(before_send: Callable | None = None):
ELASTIC_APM_SERVER_URL = config(
"ELASTIC_APM_SERVER_URL",
None,
"URL where Elastic APM is hosted",
help_text="URL where Elastic APM is hosted",
group="Elastic APM",
)
ELASTIC_APM = {
Expand All @@ -867,7 +867,7 @@ def init_sentry(before_send: Callable | None = None):
"SECRET_TOKEN": config(
"ELASTIC_APM_SECRET_TOKEN",
"default",
"Token used to communicate with Elastic APM",
help_text="Token used to communicate with Elastic APM",
group="Elastic APM",
),
"SERVER_URL": ELASTIC_APM_SERVER_URL,
Expand Down

0 comments on commit 2efd209

Please sign in to comment.