From 7be5fe4c017f8fffcf5d6118bd7a7b35190bca1f Mon Sep 17 00:00:00 2001 From: Weimin Yu Date: Tue, 7 Apr 2026 20:40:04 +0000 Subject: [PATCH] Fix Flyway script (#3003) Removing the obsolete command line argument `community`. --- release/schema-deployer/deploy_sql_schema.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/schema-deployer/deploy_sql_schema.sh b/release/schema-deployer/deploy_sql_schema.sh index 0936a3cc0..0c665df83 100755 --- a/release/schema-deployer/deploy_sql_schema.sh +++ b/release/schema-deployer/deploy_sql_schema.sh @@ -78,7 +78,7 @@ if ! pgrep cloud_sql_proxy; then exit 1 fi -/flyway/flyway -postgresql.transactional.lock=false -community \ +/flyway/flyway -postgresql.transactional.lock=false \ -user=${db_user} -password=${db_password} \ -url=jdbc:postgresql://localhost:5432/postgres \ -locations=classpath:sql/flyway \ @@ -87,7 +87,7 @@ migration_result=$? if [ ${flyway_action} == "migrate" ]; then # After deployment, log the current schema. - /flyway/flyway -community -user=${db_user} -password=${db_password} \ + /flyway/flyway -user=${db_user} -password=${db_password} \ -url=jdbc:postgresql://localhost:5432/postgres \ -locations=classpath:sql/flyway \ info