Skip to content
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