Skip to content

Commit

Permalink
Merge pull request ManageIQ#807 from mtho11/fix_postgres_jdbc_driver_…
Browse files Browse the repository at this point in the history
…typo

Correct typo in Postgres JDBC DriverName
  • Loading branch information
martinpovolny authored Mar 25, 2017
2 parents 18ef11c + 765709d commit e73a160
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function MwAddDatasourceService($http, $q) {
driverName: 'h2', driverModuleName: 'com.h2database.h2', driverClass: 'org.h2.Driver',
connectionUrl: ':mem:test;DB_CLOSE_DELAY=-1'},
{id: 'POSTGRES', label: 'Postgres', name: 'PostgresDS', jndiName: 'java:jboss/datasources/PostgresDS',
driverName: 'postresql', driverModuleName: 'org.postgresql', driverClass: 'org.postgresql.Driver',
driverName: 'postgresql', driverModuleName: 'org.postgresql', driverClass: 'org.postgresql.Driver',
connectionUrl: '://localhost:5432/postgresdb', alias: 'POSTGRESQL'},
{id: 'MSSQL', label: 'Microsoft SQL Server', name: 'MSSQLDS', jndiName: 'java:jboss/datasources/MSSQLDS',
driverName: 'sqlserver', driverModuleName: 'com.microsoft',
Expand Down Expand Up @@ -43,7 +43,7 @@ function MwAddDatasourceService($http, $q) {
connectionUrl: ':mem:test;DB_CLOSE_DELAY=-1'},
{id: 'POSTGRES', label: 'Postgres XA', name: 'PostgresXADS',
jndiName: 'java:/PostgresXADS',
driverName: 'postresql',
driverName: 'postgresql',
driverModuleName: 'org.postgresql',
driverClass: 'org.postgresql.xa.PGXADataSource',
properties: {
Expand Down

0 comments on commit e73a160

Please sign in to comment.