Skip to content

Commit 65907fc

Browse files
committed
Fix local deployment graylog provisioning
1 parent 28660ac commit 65907fc

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

services/graylog/scripts/configure.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@
4848
before=before_log(logger, logging.INFO),
4949
)
5050
def 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

6062
def 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"]

0 commit comments

Comments
 (0)