Skip to content

Commit f1dea83

Browse files
committed
no pooling in sqlsrv/odbc
1 parent 9d587d7 commit f1dea83

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,10 @@ jobs:
140140
uses: actions/checkout@v4
141141

142142
- name: Install Microsoft ODBC
143-
run: sudo ACCEPT_EULA=Y apt-get install msodbcsql18 -y
143+
run: |
144+
sudo ACCEPT_EULA=Y apt-get install msodbcsql18 -y
145+
sudo echo "\n[ODBC]\nPooling=No" > /etc/odbcinst.ini
146+
sudo cat /etc/odbcinst.ini
144147
145148
- name: Create MS SQL Database
146149
run: docker exec -i mssql /opt/mssql-tools18/bin/sqlcmd -C -S localhost -U SA -P 'YourStrong!Passw0rd' -Q 'CREATE DATABASE nextras_dbal_test'

0 commit comments

Comments
 (0)