From 9219b28cf822afe4db9d8bd6e799cb07b8ec3816 Mon Sep 17 00:00:00 2001 From: Hyunseok Seo Date: Fri, 26 Apr 2024 21:46:32 +0900 Subject: [PATCH] fix(.env): wrap values in quotes to prevent parsing errors --- .env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env b/.env index d598c2f093..ff1a0e5fde 100644 --- a/.env +++ b/.env @@ -54,6 +54,6 @@ ADBC_JDBC_POSTGRESQL_URL=localhost:5432/postgres ADBC_JDBC_POSTGRESQL_USER=postgres ADBC_JDBC_POSTGRESQL_PASSWORD=password ADBC_JDBC_POSTGRESQL_DATABASE=postgres -ADBC_POSTGRESQL_TEST_URI=postgresql://localhost:5432/postgres?user=postgres&password=password +ADBC_POSTGRESQL_TEST_URI="postgresql://localhost:5432/postgres?user=postgres&password=password" ADBC_SQLITE_FLIGHTSQL_URI=grpc+tcp://localhost:8080 ADBC_TEST_FLIGHTSQL_URI=grpc+tcp://localhost:41414