Skip to content

Commit 351fe99

Browse files
committed
driver: add change charset.
1 parent 3b150d4 commit 351fe99

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/fast_testing.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ jobs:
3838
with:
3939
tarantool-version: ${{ matrix.tarantool }}
4040

41+
# Workaround to avoid issue https://github.com/tarantool/mysql/issues/47.
42+
- name: Update mysql server config
43+
run: |
44+
sudo systemctl restart mysql
45+
4146
- name: Prepare test environment
4247
run: |
4348
sudo mysql -proot -e "CREATE USER ${MYSQL_USER}@${MYSQL_HOST};"

.github/workflows/reusable_testing.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ jobs:
3636
# dependencies when migrating to other OS version.
3737
run: sudo dpkg -i tarantool*.deb
3838

39+
# Workaround to avoid issue https://github.com/tarantool/mysql/issues/47.
40+
- name: Update mysql server config
41+
run: |
42+
sudo systemctl restart mysql
43+
3944
- name: Prepare test environment
4045
run: |
4146
sudo mysql -proot -e "CREATE USER ${MYSQL_USER}@${MYSQL_HOST};"

0 commit comments

Comments
 (0)