Skip to content

Commit b0cda49

Browse files
committed
Fixed server address in Arrow Flight server
1 parent 61bc4b2 commit b0cda49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tabpy/tabpy_server/app/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def _get_arrow_server(self, config):
9797
scheme = "grpc+tls"
9898
tls_certificates = self._get_tls_certificates(config)
9999

100-
host = "localhost"
100+
host = "0.0.0.0"
101101
port = config.get(SettingsParameters.ArrowFlightPort)
102102
location = "{}://{}:{}".format(scheme, host, port)
103103

0 commit comments

Comments
 (0)