Fix python environment failed to launch due to port needs integer not string (#451)
This commit is contained in:
committed by
Soam Vasani
parent
816fd25a6c
commit
6a1da19e73
@@ -95,4 +95,4 @@ def setup_logger(loglevel):
|
||||
#
|
||||
setup_logger(logging.DEBUG)
|
||||
app.logger.info("Starting server")
|
||||
app.run(host='0.0.0.0', port='8888')
|
||||
app.run(host='0.0.0.0', port=8888)
|
||||
|
||||
Reference in New Issue
Block a user