Skip to content

Commit fe0a6e3

Browse files
Merge pull request #606 from hlee12/dev/arrow-flight-address-fix
Fixed server address in Arrow Flight server
2 parents 61bc4b2 + b01a793 commit fe0a6e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tabpy/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.0
1+
2.7.1

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)