Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Https Connections Instead of Http #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tscached/handler_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def metadata_caching(config, name, endpoint, post_data=None):
return get_result, 200
else:
logging.info('Meta Endpoint MISS: %s' % redis_key)
url = 'http://%s:%s%s' % (config['kairosdb']['host'], config['kairosdb']['port'], endpoint)
url = 'https://%s:%s%s' % (config['kairosdb']['host'], config['kairosdb']['port'], endpoint)

try:
if post_data:
Expand Down
2 changes: 1 addition & 1 deletion tscached/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def query_kairos(kairos_host, kairos_port, query, propagate=True):
:raise: BackendQueryFailure if the operation doesn't succeed.
"""
try:
url = 'http://%s:%s/api/v1/datapoints/query' % (kairos_host, kairos_port)
url = 'https://%s:%s/api/v1/datapoints/query' % (kairos_host, kairos_port)
r = requests.post(url, data=json.dumps(query))
value = json.loads(r.text)
if r.status_code / 100 != 2:
Expand Down