Skip to content

Commit d2806fa

Browse files
committed
CMR-10388: Fixing parameter names
1 parent 01b07c4 commit d2806fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

subscription/src/access_control.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ def get_url_from_parameter_store(self):
5757
context_param_name = f"{pre_fix}CMR_ACCESS_CONTROL_RELATIVE_ROOT_URL"
5858

5959
env_vars = Env_Vars
60-
protocol = env_vars.get_var(protocol_param_name)
61-
port = env_vars.get_var(port_param_name)
62-
host = env_vars.get_var(host_param_name)
63-
context = env_vars.get_var(context_param_name)
60+
protocol = env_vars.get_var(name=protocol_param_name)
61+
port = env_vars.get_var(name=port_param_name)
62+
host = env_vars.get_var(name=host_param_name)
63+
context = env_vars.get_var(name=context_param_name)
6464
self.url = f"{protocol}://{host}:{port}/{context}"
6565
logger.debug("Subscription Worker Access-Control URL:" + self.url)
6666

0 commit comments

Comments
 (0)