1
0
forked from PGL/Clyde

Fixing the CI

Moving the dev test and build to port 5442 from 5432 to avoid
conflicting with the running postgresql
This commit is contained in:
2024-03-17 22:02:05 +01:00
parent f2b80ba89f
commit ee37dc79a7
4 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ public class JdbcConfig {
public DataSource psqlSource(){
DriverManagerDataSource source = new DriverManagerDataSource();
source.setDriverClassName("org.postgresql.Driver");
source.setUrl("jdbc:postgresql://localhost:5432/clyde");
source.setUrl("jdbc:postgresql://localhost:5442/clyde");
source.setUsername("devel");
source.setPassword("devel");