Merge pull request #1576 from lucas-clemente/fix-crypto-setup-test

fix go routine leak in crypto setup test
This commit is contained in:
Marten Seemann
2018-11-02 17:13:15 +07:00
committed by GitHub

View File

@@ -177,6 +177,7 @@ var _ = Describe("Crypto Setup TLS", func() {
case c := <-sChunkChan:
client.HandleMessage(c.data, c.encLevel)
case <-done: // handshake complete
return
}
}
}()