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.
2 parents df6446f + 626fcea commit 71e761cCopy full SHA for 71e761c
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