浏览代码

Fixed URLs

Nikola Kotur 3 年之前
父节点
当前提交
d29906e02a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      main.py

+ 2 - 2
main.py

@@ -29,7 +29,7 @@ def get_result():
         # if so, return a success object
         returnResponse["style"] = "is-success"
         returnResponse["title"] = "All good in the hood boss"
-        returnResponse["content"] = "<b>%s / %s Services showing as online. Check <a href=https://statping.hostname.com target=_blank>here</a> for more info. </br> <p>"%(services_up, total_services)
+        returnResponse["content"] = "<b>%s / %s Services showing as online. Check <a href=http://192.168.88.50:8085/ target=_blank>here</a> for more info. </br> <p>"%(services_up, total_services)
 
         return(returnResponse)
       else:
@@ -41,7 +41,7 @@ def get_result():
         for i in failure_list:
           numptyList += "<li>" + i + "</li>"
         numptyList += "</ul>"
-        returnResponse["content"] = "<b>%s / %s Services showing as online. Check <a href=https://statping.hostname.com target=_blank>here</a> for more info. </br> <p> <br>Here are the numpties that are letting the side down:</br> %s"%(services_up, total_services, numptyList)
+        returnResponse["content"] = "<b>%s / %s Services showing as online. Check <a href=http://192.168.88.50:8085/ target=_blank>here</a> for more info. </br> <p> <br>Here are the numpties that are letting the side down:</br> %s"%(services_up, total_services, numptyList)
       
         return(returnResponse)