1
0
mirror of https://github.com/etcd-io/etcd.git synced 2026-02-05 15:46:51 +01:00

Merge pull request #10975 from lzhfromustc/currentRev

Add critical section to protect s.currentRev
This commit is contained in:
Jingyi Hu
2019-09-06 12:27:53 -07:00
committed by GitHub

View File

@@ -176,6 +176,7 @@ func (s *store) compactBarrier(ctx context.Context, ch chan struct{}) {
}
func (s *store) Hash() (hash uint32, revision int64, err error) {
// TODO: hash and revision could be inconsistent, one possible fix is to add s.revMu.RLock() at the beginning of function, which is costly
start := time.Now()
s.b.ForceCommit()