Skip to content
Merged
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
4 changes: 2 additions & 2 deletions go/pools/smartconnpool/pool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,7 @@ func TestGetSpike(t *testing.T) {
func TestCloseDuringWaitForConn(t *testing.T) {
ctx := context.Background()
goRoutineCnt := 50
getTimeout := 300 * time.Millisecond
getTimeout := 2000 * time.Millisecond

for range 50 {
hung := make(chan (struct{}), goRoutineCnt)
Expand All @@ -1263,7 +1263,7 @@ func TestCloseDuringWaitForConn(t *testing.T) {
wg := sync.WaitGroup{}
var count atomic.Int64

fmt.Println("Starting TestCloseDuringGetAndPut")
fmt.Println("Starting TestCloseDuringWaitForConn")

// Spawn multiple goroutines to perform Get and Put operations, but only
// allow connections to be checked out until `closed` has been set to true.
Expand Down
Loading