Skip to content

Commit 2efd209

Browse files
committed
🔧 Add missing envvar help texts
1 parent 284d454 commit 2efd209

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

open_api_framework/conf/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ def init_sentry(before_send: Callable | None = None):
849849
ELASTIC_APM_SERVER_URL = config(
850850
"ELASTIC_APM_SERVER_URL",
851851
None,
852-
"URL where Elastic APM is hosted",
852+
help_text="URL where Elastic APM is hosted",
853853
group="Elastic APM",
854854
)
855855
ELASTIC_APM = {
@@ -867,7 +867,7 @@ def init_sentry(before_send: Callable | None = None):
867867
"SECRET_TOKEN": config(
868868
"ELASTIC_APM_SECRET_TOKEN",
869869
"default",
870-
"Token used to communicate with Elastic APM",
870+
help_text="Token used to communicate with Elastic APM",
871871
group="Elastic APM",
872872
),
873873
"SERVER_URL": ELASTIC_APM_SERVER_URL,

0 commit comments

Comments
 (0)