Merge pull request #857 from gguoss/patch-1

Failed to compile comment code
This commit is contained in:
Ethan Buchman
2017-11-16 18:35:18 +00:00
committed by GitHub

View File

@@ -413,7 +413,7 @@ FOR_LOOP:
// Peek into bufReader for debugging
if numBytes := c.bufReader.Buffered(); numBytes > 0 {
log.Info("Peek connection buffer", "numBytes", numBytes, "bytes", log15.Lazy{func() []byte {
bytes, err := c.bufReader.Peek(MinInt(numBytes, 100))
bytes, err := c.bufReader.Peek(cmn.MinInt(numBytes, 100))
if err == nil {
return bytes
} else {