8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df6446f commit 626fceaCopy full SHA for 626fcea
src/main/java/com/github/pgasync/impl/PgConnectionPool.java
@@ -62,7 +62,7 @@ public abstract class PgConnectionPool implements ConnectionPool {
62
final boolean pipeline;
63
64
public PgConnectionPool(PoolProperties properties) {
65
- this.address = new InetSocketAddress(properties.getHostname(), properties.getPort());
+ this.address = InetSocketAddress.createUnresolved(properties.getHostname(), properties.getPort());
66
this.username = properties.getUsername();
67
this.password = properties.getPassword();
68
this.database = properties.getDatabase();
0 commit comments