Switch to use https for httpbin.org requests

This commit is contained in:
Roman Mogylatov 2020-08-05 23:31:50 -04:00
parent 43c5ac03f4
commit 84cecb4bc3
2 changed files with 2 additions and 2 deletions

View File

@ -12,6 +12,6 @@ monitors:
httpbin:
method: "GET"
url: "http://httpbin.org/get"
url: "https://httpbin.org/get"
timeout: 5
check_every: 5

View File

@ -32,7 +32,7 @@ def container():
},
'httpbin': {
'method': 'GET',
'url': 'http://fake-httpbin.org/get',
'url': 'https://fake-httpbin.org/get',
'timeout': 1,
'check_every': 1,
},