From 4b1d5767dbedee92e2b8982e8d64badb67f7e445 Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Wed, 14 Apr 2021 14:30:54 +0500 Subject: [PATCH] ssl verify for install --- install/installLog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/installLog.py b/install/installLog.py index cf16daf8f..fd950272d 100755 --- a/install/installLog.py +++ b/install/installLog.py @@ -30,6 +30,6 @@ class InstallLog: try: finalData = json.dumps({'ipAddress': InstallLog.ServerIP, "InstallCyberPanelStatus": message}) - requests.post(InstallLog.LogURL, data=finalData, verify=False) + requests.post(InstallLog.LogURL, data=finalData) except: pass