We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01b07c4 commit d2806faCopy full SHA for d2806fa
subscription/src/access_control.py
@@ -57,10 +57,10 @@ def get_url_from_parameter_store(self):
57
context_param_name = f"{pre_fix}CMR_ACCESS_CONTROL_RELATIVE_ROOT_URL"
58
59
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)
+ protocol = env_vars.get_var(name=protocol_param_name)
+ port = env_vars.get_var(name=port_param_name)
+ host = env_vars.get_var(name=host_param_name)
+ context = env_vars.get_var(name=context_param_name)
64
self.url = f"{protocol}://{host}:{port}/{context}"
65
logger.debug("Subscription Worker Access-Control URL:" + self.url)
66
0 commit comments