Skip to content

Commit

Permalink
Merge pull request moby#15100 from calavera/fix_reader_timeout
Browse files Browse the repository at this point in the history
Fix reset timeout for buffer readers.
  • Loading branch information
tiborvass committed Jul 30, 2015
2 parents f39987a + 40ea67a commit bfccd32
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions pkg/ioutils/readers.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,18 @@ package ioutils

import (
"bytes"
"crypto/rand"
"crypto/sha256"
"encoding/hex"
"io"
"math/big"
"math/rand"
"sync"
"time"

"github.com/docker/docker/pkg/random"
)

var rndSrc = random.NewSource()

type readCloserWrapper struct {
io.Reader
closer func() error
Expand Down Expand Up @@ -66,18 +69,14 @@ type bufReader struct {
}

func NewBufReader(r io.Reader) *bufReader {
var timeout int
if randVal, err := rand.Int(rand.Reader, big.NewInt(120)); err == nil {
timeout = int(randVal.Int64()) + 180
} else {
timeout = 300
}
timeout := rand.New(rndSrc).Intn(120) + 180

reader := &bufReader{
buf: &bytes.Buffer{},
drainBuf: make([]byte, 1024),
reuseBuf: make([]byte, 4096),
maxReuse: 1000,
resetTimeout: time.Second * time.Duration(timeout),
resetTimeout: time.Duration(timeout) * time.Second,
bufLenResetThreshold: 100 * 1024,
maxReadDataReset: 10 * 1024 * 1024,
reader: r,
Expand Down

0 comments on commit bfccd32

Please sign in to comment.