mvcc: incomplete fix in #11502 (#11533)

release-3.5
zimash 2020-01-16 23:05:10 +03:00 committed by Xiang Li
parent 2e3b55eb7b
commit e5a35c827c
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ func (b *backend) Snapshot() Snapshot {
zap.String("size", humanize.Bytes(uint64(dbBytes))),
)
} else {
plog.Warningf("snapshotting is taking more than %v seconds to finish transferring %v MB [started at %v]", time.Since(start).Seconds(), float64(dbBytes)/float64(1024*1014), start)
plog.Warningf("snapshotting is taking more than %v seconds to finish transferring %v MB [started at %v]", time.Since(start).Seconds(), float64(dbBytes)/float64(1024*1024), start)
}
case <-stopc: