Skip to content

Commit

Permalink
incorrect api endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
markramach committed Jan 17, 2017
1 parent a95939a commit c6b5a85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clc_ansible_module/clc_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def _set_clc_credentials_from_env(self):
v2_api_passwd = env.get('CLC_V2_API_PASSWD', False)
clc_alias = env.get('CLC_ACCT_ALIAS', False)
self.api_url = env.get('CLC_V2_API_URL', 'https://api.ctl.io')
self.meta_api_url = env.get('META_API_URL', 'https://api.runner.io')
self.meta_api_url = env.get('META_API_URL', 'https://api.runner.ctl.io')

if v2_api_token and clc_alias:

Expand Down
2 changes: 1 addition & 1 deletion clc_ansible_module/clc_meta_fact.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def _set_clc_credentials_from_env(self):
v2_api_passwd = env.get('CLC_V2_API_PASSWD', False)
clc_alias = env.get('CLC_ACCT_ALIAS', False)
self.api_url = env.get('CLC_V2_API_URL', 'https://api.ctl.io')
self.meta_api_url = env.get('META_API_URL', 'https://api.runner.io')
self.meta_api_url = env.get('META_API_URL', 'https://api.runner.ctl.io')

if v2_api_token and clc_alias:

Expand Down

0 comments on commit c6b5a85

Please sign in to comment.