Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ Versioning](http://semver.org/spec/v2.0.0.html) except to the first release.

### Fixed

* Fixed the fluctuating behavior of the TestConnectionHandlerOpenUpdateClose
test by increasing the waiting time (#502).

## [v2.4.1] - 2025-10-16

This maintenance release marks the end of active development on the `v2`
Expand Down
2 changes: 1 addition & 1 deletion pool/connection_pool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ func TestConnectionHandlerOpenUpdateClose(t *testing.T) {

h := &testHandler{}
poolOpts := pool.Opts{
CheckTimeout: 100 * time.Microsecond,
CheckTimeout: 100 * time.Millisecond,
ConnectionHandler: h,
}
connPool, err := pool.ConnectWithOpts(ctx, poolInstances, poolOpts)
Expand Down
Loading