mirror of
https://github.com/traefik/traefik.git
synced 2025-10-27 22:41:36 +01:00
Mitigate TestShutdownUDPConn flakyness
This commit is contained in:
parent
822f349fa1
commit
0880cc672f
@ -53,12 +53,18 @@ func TestShutdownUDPConn(t *testing.T) {
|
||||
// Start sending packets, to create a "session" with the server.
|
||||
requireEcho(t, "TEST", conn, time.Second)
|
||||
|
||||
shutdownStartedChan := make(chan struct{})
|
||||
doneChan := make(chan struct{})
|
||||
go func() {
|
||||
close(shutdownStartedChan)
|
||||
entryPoint.Shutdown(t.Context())
|
||||
close(doneChan)
|
||||
}()
|
||||
|
||||
// Wait until shutdown has started, and hopefully after 100 ms the listener has stopped accepting new sessions.
|
||||
<-shutdownStartedChan
|
||||
time.Sleep(100 * time.Millisecond)
|
||||
|
||||
// Make sure that our session is still live even after the shutdown.
|
||||
requireEcho(t, "TEST2", conn, time.Second)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user