make sure port default works

This commit is contained in:
Joshua Grimm 2022-02-23 22:55:20 +01:00
parent 7aa6e1a170
commit a595116a3c

View file

@ -370,8 +370,10 @@ class MinecraftCollector(object):
yield metric yield metric
if __name__ == '__main__':
try:
HTTP_PORT = int(os.environ.get('HTTP_PORT')) HTTP_PORT = int(os.environ.get('HTTP_PORT'))
if HTTP_PORT == None: except:
HTTP_PORT = 8000 HTTP_PORT = 8000
start_http_server(HTTP_PORT) start_http_server(HTTP_PORT)