Skip to content

Commit 4251458

Browse files
committed
update function name
No-Issue
1 parent 5566970 commit 4251458

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

galaxy_ng/app/dynaconf_hooks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def post(settings: Dynaconf) -> Dict[str, Any]:
4141
data.update(configure_password_validators(settings))
4242
data.update(configure_api_base_path(settings))
4343
data.update(configure_legacy_roles(settings))
44-
data.update(configure_gateway(settings))
44+
data.update(configure_app_proxy(settings))
4545

4646
# This should go last, and it needs to receive the data from the previous configuration
4747
# functions because this function configures the rest framework auth classes based off
@@ -568,7 +568,7 @@ def configure_legacy_roles(settings: Dynaconf) -> Dict[str, Any]:
568568
return data
569569

570570

571-
def configure_gateway(settings: Dynaconf) -> Dict[str, Any]:
571+
def configure_app_proxy(settings: Dynaconf) -> Dict[str, Any]:
572572
ANSIBLE_BASE_JWT_KEY = settings.get("ANSIBLE_BASE_JWT_KEY")
573573
if ANSIBLE_BASE_JWT_KEY:
574574
data = {

0 commit comments

Comments
 (0)