diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fe8bdf9..b0f28d00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,7 +24,7 @@ pgconn now supports pipeline mode. ## pgxpool -`Connect` and `ConnectConfig` have been renamed to `New` and `NewConfig` respectively. The `LazyConnect` option has been removed. Pools always lazily connect. +`Connect` and `ConnectConfig` have been renamed to `New` and `NewWithConfig` respectively. The `LazyConnect` option has been removed. Pools always lazily connect. ## pgtype diff --git a/pgxpool/doc.go b/pgxpool/doc.go index 07f6359d..38e49795 100644 --- a/pgxpool/doc.go +++ b/pgxpool/doc.go @@ -20,7 +20,7 @@ connection with `ConnectConfig`. // do something with every new connection } - pool, err := pgxpool.NewConfig(context.Background(), config) + pool, err := pgxpool.NewWithConfig(context.Background(), config) A pool returns without waiting for any connections to be established. Acquire a connection immediately after creating the pool to check if a connection can successfully be established.