diff --git a/open_api_framework/conf/base.py b/open_api_framework/conf/base.py index dae8884..8a507a1 100644 --- a/open_api_framework/conf/base.py +++ b/open_api_framework/conf/base.py @@ -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 = { @@ -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,