From aa7337e32e663739e12cceec18f46487008550e4 Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Tue, 13 Apr 2021 13:56:36 +0500 Subject: [PATCH] update monitor url --- plogical/ClusterManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plogical/ClusterManager.py b/plogical/ClusterManager.py index eed2ef377..d91bfc119 100644 --- a/plogical/ClusterManager.py +++ b/plogical/ClusterManager.py @@ -401,7 +401,7 @@ password=%s""" % (rootdbpassword, rootdbpassword) def Uptime(self): try: finalData = {'name': self.config['name'], 'token': self.config['token']} - resp = requests.post(ClusterManager.LogURL, data=json.dumps(finalData), verify=False) + resp = requests.post(ClusterManager.UptimeURL, data=json.dumps(finalData), verify=False) if os.path.exists(ProcessUtilities.debugPath): logging.writeToFile(resp.text + '[Uptime:info]') except BaseException as msg: