We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 742c4e8 commit f2b1457Copy full SHA for f2b1457
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "web-sand"
3
-version = "4.2.0"
+version = "4.2.1"
4
description = "UI for browsing/editing semantic descriptions"
5
authors = ["Binh Vu <binh@toan2.com>"]
6
repository = "https://github.com/usc-isi-i2/sand"
sand/__main__.py
@@ -66,7 +66,7 @@ def start(
66
else:
67
logger.info("Start server in non-wsgi mode")
68
http_server = HTTPServer(WSGIContainer(app), ssl_options=ssl_options)
69
- http_server.listen(port)
+ http_server.listen(address="0.0.0.0", port=port)
70
IOLoop.instance().start()
71
72
0 commit comments