This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/arrow-flight-sql-postgresql.git
The following commit(s) were added to refs/heads/main by this push:
new 5d2f0d4 docker: Fix a bug that `arrow_flight_sql.uri` isn't
configured (#192)
5d2f0d4 is described below
commit 5d2f0d4994519879c33e3c791d4ee562264397f8
Author: Sutou Kouhei <[email protected]>
AuthorDate: Thu Sep 12 15:26:21 2024 +0900
docker: Fix a bug that `arrow_flight_sql.uri` isn't configured (#192)
Closes GH-191
---
package/docker/apache-arrow-flight-sql-enable.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/docker/apache-arrow-flight-sql-enable.sh
b/package/docker/apache-arrow-flight-sql-enable.sh
index b0013a9..3691e82 100755
--- a/package/docker/apache-arrow-flight-sql-enable.sh
+++ b/package/docker/apache-arrow-flight-sql-enable.sh
@@ -48,5 +48,5 @@ if [ "${ssl}" = "on" ]; then
else
uri="grpc://0.0.0.0:15432"
fi
-echo "arrow_flight_sql.uri = '${url}'" | \
+echo "arrow_flight_sql.uri = '${uri}'" | \
tee -a "${PGDATA}/postgresql.conf"