From 9d81b0077219de1a226d2af3d939f7235043c6f9 Mon Sep 17 00:00:00 2001 From: Christian Adams Date: Wed, 16 Oct 2019 13:32:06 -0400 Subject: [PATCH] have analytics collections verify with system trusted CA list --- awx/main/analytics/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/analytics/core.py b/awx/main/analytics/core.py index 34e4fc9f90..df13ebd4fa 100644 --- a/awx/main/analytics/core.py +++ b/awx/main/analytics/core.py @@ -167,7 +167,7 @@ def ship(path): files = {'file': (os.path.basename(path), f, settings.INSIGHTS_AGENT_MIME)} response = requests.post(url, files=files, - verify=True, + verify="/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem", auth=(rh_user, rh_password), timeout=(31, 31)) if response.status_code != 202: