This changes in 2.7.0 to the DbService class caused an issue with PostgreSql db config :
$dsnParser = new DsnParser(['mysql' => 'pdo_mysql']);
$tmpConnection = DriverManager::getConnection($dsnParser->parse($this->dbCredentials['db_url']));
You should probably add all the supported entries in the array passed to the DsnParser constructor or direcly use Doctrine\Bundle\DoctrineBundle\ConnectionFactory::DEFAULT_SCHEME_MAP array.
Hello 👋
This changes in 2.7.0 to the DbService class caused an issue with PostgreSql db config :
You should probably add all the supported entries in the array passed to the DsnParser constructor or direcly use
Doctrine\Bundle\DoctrineBundle\ConnectionFactory::DEFAULT_SCHEME_MAP
array.