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.
1 parent 96b1119 commit 95393d6Copy full SHA for 95393d6
packages/shared/pkg/proxy/proxy_test.go
@@ -418,13 +418,6 @@ func TestProxyRetriesOnDelayedBackendStartup(t *testing.T) {
418
419
// Start backend after a delay (simulating envd port forwarding)
420
go func() {
421
- defer func() {
422
- // Ensure channel is always closed to prevent test hangs
423
- if len(backendReady) == 0 {
424
- backendReady <- backendResult{nil, errors.New("goroutine exited without sending result")}
425
- }
426
- }()
427
-
428
// Wait 300ms before starting the backend (should succeed on retry 2 or 3)
429
time.Sleep(300 * time.Millisecond)
430
0 commit comments