Skip to content

Commit

Permalink
store/tikv: fix an unlock bug (pingcap#1502)
Browse files Browse the repository at this point in the history
  • Loading branch information
zimulala authored Jul 25, 2016
1 parent ffcd3ba commit 66198e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/tikv/coprocessor.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ func (it *copIterator) work() {
for {
it.mu.Lock()
if it.finished {
it.mu.Lock()
it.mu.Unlock()
break
}
// Find the next task to send.
Expand Down

0 comments on commit 66198e6

Please sign in to comment.