mirror of
https://github.com/traefik/traefik.git
synced 2025-10-28 06:51:35 +01:00
Merge branch v3.5 into master
This commit is contained in:
commit
067c7e7152
@ -250,13 +250,19 @@ func TestShutdown(t *testing.T) {
|
|||||||
// Start sending packets, to create a "session" with the server.
|
// Start sending packets, to create a "session" with the server.
|
||||||
requireEcho(t, "TEST", conn, time.Second)
|
requireEcho(t, "TEST", conn, time.Second)
|
||||||
|
|
||||||
|
shutdownStartedChan := make(chan struct{})
|
||||||
doneChan := make(chan struct{})
|
doneChan := make(chan struct{})
|
||||||
go func() {
|
go func() {
|
||||||
|
close(shutdownStartedChan)
|
||||||
err := l.Shutdown(5 * time.Second)
|
err := l.Shutdown(5 * time.Second)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
close(doneChan)
|
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.
|
// Make sure that our session is still live even after the shutdown.
|
||||||
requireEcho(t, "TEST2", conn, time.Second)
|
requireEcho(t, "TEST2", conn, time.Second)
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user