Merge pull request #2162 from lucas-clemente/datagram

implement the datagram draft
This commit is contained in:
Marten Seemann 2020-12-17 11:22:40 +07:00 committed by GitHub
commit 9693a46d31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
36 changed files with 879 additions and 67 deletions

View file

@ -8,9 +8,7 @@ import (
"io/ioutil"
mrand "math/rand"
"net"
"os"
"runtime/pprof"
"strconv"
"strings"
"sync/atomic"
"time"
@ -181,15 +179,6 @@ var _ = Describe("Timeout tests", func() {
Context("timing out at the right time", func() {
var idleTimeout time.Duration
scaleDuration := func(d time.Duration) time.Duration {
scaleFactor := 1
if f, err := strconv.Atoi(os.Getenv("TIMESCALE_FACTOR")); err == nil { // parsing "" errors, so this works fine if the env is not set
scaleFactor = f
}
Expect(scaleFactor).ToNot(BeZero())
return time.Duration(scaleFactor) * d
}
BeforeEach(func() {
idleTimeout = scaleDuration(100 * time.Millisecond)
})