aboutsummaryrefslogtreecommitdiffstats
path: root/bin/check_health.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/check_health.py')
-rwxr-xr-xbin/check_health.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/check_health.py b/bin/check_health.py
index 53e9da6..ae61881 100755
--- a/bin/check_health.py
+++ b/bin/check_health.py
@@ -61,6 +61,6 @@ class GetHandler(BaseHTTPRequestHandler):
if __name__ == '__main__':
from http.server import HTTPServer
#from BaseHTTPServer import HTTPServer
- server = HTTPServer(("", 10000), GetHandler)
- print('Starting server at http://localhost:10000')
+ server = HTTPServer(("", 10001), GetHandler)
+ print('Starting server at http://localhost:10001')
server.serve_forever()