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
2 changes: 1 addition & 1 deletion internal/launcher/connection_pool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ func TestConnectionStateActive(t *testing.T) {
func TestCleanupIdleConnections_AlreadyClosedState(t *testing.T) {
ctx := context.Background()
config := PoolConfig{
IdleTimeout: 1 * time.Hour, // long — won't trigger idle cleanup
IdleTimeout: 1 * time.Hour, // long — won't trigger idle cleanup
// Use a very long cleanup interval so the background ticker does not
// interfere with this deterministic test; we'll invoke cleanup manually.
CleanupInterval: 24 * time.Hour,
Expand Down
Loading