Skip to content

Commit b33edaf

Browse files
committed
fix MySQL connection and CI node install
1 parent 1431585 commit b33edaf

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
106106
# Install language runtimes
107107
chown -R runner:runner /workspace
108-
su - runner -c "cd /workspace && ~/.local/bin/mise install"
108+
su - runner -c "cd /workspace && MISE_NODE_VERIFY=false ~/.local/bin/mise install"
109109
110110
# Install language-specific tools
111111
su - runner -c "cd /workspace && for dir in python csharp babashka; do

debezium/debezium-xtdb/.mise.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,9 @@ CREATE DATABASE IF NOT EXISTS accounts;
161161
CREATE USER IF NOT EXISTS 'cdc_user'@'%' IDENTIFIED BY 'cdc_password';
162162
GRANT SELECT, RELOAD, SHOW DATABASES, REPLICATION SLAVE, REPLICATION CLIENT ON *.* TO 'cdc_user'@'%';
163163
GRANT ALL PRIVILEGES ON accounts.* TO 'cdc_user'@'%';
164+
CREATE USER IF NOT EXISTS 'cdc_user'@'localhost' IDENTIFIED BY 'cdc_password';
165+
GRANT SELECT, RELOAD, SHOW DATABASES, REPLICATION SLAVE, REPLICATION CLIENT ON *.* TO 'cdc_user'@'localhost';
166+
GRANT ALL PRIVILEGES ON accounts.* TO 'cdc_user'@'localhost';
164167
FLUSH PRIVILEGES;
165168
166169
USE accounts;

0 commit comments

Comments
 (0)