Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

store/tikv: call Next() after copIterator closed lead to goroutine leak #5624

Merged
merged 2 commits into from
Jan 15, 2018

Commits on Jan 12, 2018

  1. store/tikv: call Next() after copIterator Closed lead to goroutine leak

    After Close(), worker groutine receive from copIterator.finished and
    exit directly, without writing any thing to taskCh.
    Next() receives from taskCh and may hang forever, cause the caller goroutine
    leak.
    tiancaiamao committed Jan 12, 2018
    Configuration menu
    Copy the full SHA
    17c3e3d View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2018

  1. add tests

    tiancaiamao committed Jan 15, 2018
    Configuration menu
    Copy the full SHA
    4ea6d21 View commit details
    Browse the repository at this point in the history