File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -88,11 +88,10 @@ jobs:
8888 /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P 'YourStrong@Passw0rd' -Q "CREATE DATABASE [Whatever];"
8989 - name :
9090 Increase max connections (Postgre SQL).
91- # Postgre < 16 cannot adjust it using env vars
91+ # Postgre < 16 cannot adjust it using env vars => Workaround: we use psql to adjust the max connections
9292 run : |
93- docker exec postgres bash -c "echo \"max_connections = 300\" >> /var/lib/postgresql/data/postgresql.conf"
94- docker restart postgres
95- sleep 5
93+ psql -h localhost -U postgres -d testdb -c "ALTER SYSTEM SET max_connections = 300;"
94+ psql -h localhost -U postgres -d testdb -c "SELECT pg_reload_conf();"
9695 - name : Create Oracle user
9796 run : |
9897 sql sys/adfkweflajdfglkj@localhost/FREEPDB1 as sysdba <<EOF
You can’t perform that action at this time.
0 commit comments