We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
First of all please excuse me for a lack of information - this is all i have honestly.
I have stopping function wrapper:
func stopInitiator() { stopChan := make(chan struct{}) go func() { f.cli.Stop() close(stopChan) }() select { case <-stopChan: case <-time.After(time.Minute): panic("fix initiator stopping timeout") } }
Expected behavior: successful initiator stopping. Given behavior: initiator.Stop() method got stuck eternally -> panic.
initiator.Stop()
The text was updated successfully, but these errors were encountered:
Hi, I found a bug with initiator stops hanging, I fixed it here - #669. Please let me know if you have further thoughts.
Sorry, something went wrong.
I believe it's still stuck during reconnect tryouts
No branches or pull requests
First of all please excuse me for a lack of information - this is all i have honestly.
I have stopping function wrapper:
Expected behavior: successful initiator stopping.
Given behavior:
initiator.Stop()
method got stuck eternally -> panic.The text was updated successfully, but these errors were encountered: