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: