Skip to content

Commit 9ece268

Browse files
fix(kms-connector): fix db-migration from 0.9.4 (#1253)
* fix(kms-connector): fix db-migration from 0.9.4 * chore(test-suite): upgrade connector db-migration
1 parent 5b39961 commit 9ece268

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

kms-connector/connector-db/init_db.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ else
1919
fi
2020

2121
echo "-------------- Start database initialization --------------"
22+
sqlx database drop -y -f || true
2223

2324
echo "Creating database..."
2425
sqlx database create || { echo "Failed to create database."; exit 1; }

test-suite/fhevm/fhevm-cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ PROJECT="fhevm"
1717
# Default versions for the fhevm stack.
1818

1919
# KMS connector services.
20-
export CONNECTOR_DB_MIGRATION_VERSION=${CONNECTOR_DB_MIGRATION_VERSION:-"v0.9.9"}
20+
export CONNECTOR_DB_MIGRATION_VERSION=${CONNECTOR_DB_MIGRATION_VERSION:-"cbb9fee"}
2121
export CONNECTOR_GW_LISTENER_VERSION=${CONNECTOR_GW_LISTENER_VERSION:-"v0.9.9"}
2222
export CONNECTOR_KMS_WORKER_VERSION=${CONNECTOR_KMS_WORKER_VERSION:-"v0.9.9"}
2323
export CONNECTOR_TX_SENDER_VERSION=${CONNECTOR_TX_SENDER_VERSION:-"v0.9.9"}

0 commit comments

Comments
 (0)