File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 4848 before = before_log (logger , logging .INFO ),
4949)
5050def wait_graylog_is_online ():
51- _r = requests .get (GRAYLOG_BASE_DOMAIN + "/api/system" , auth = REQUESTS_AUTH )
51+ _r = requests .get (
52+ GRAYLOG_BASE_DOMAIN + "/api/system" , auth = REQUESTS_AUTH , verify = False
53+ )
5254
5355 if _r .status_code == 401 :
5456 raise TypeError (f"Graylog unauthorized HTTP response: { _r } " )
@@ -58,7 +60,9 @@ def wait_graylog_is_online():
5860
5961
6062def validate_graylog_version_is_supported ():
61- _r = requests .get (GRAYLOG_BASE_DOMAIN + "/api/system" , auth = REQUESTS_AUTH )
63+ _r = requests .get (
64+ GRAYLOG_BASE_DOMAIN + "/api/system" , auth = REQUESTS_AUTH , verify = False
65+ )
6266 _r .raise_for_status ()
6367
6468 graylog_version = _r .json ()["version" ]
You can’t perform that action at this time.
0 commit comments