You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
go func() {
for {
select {
case c, ok := <-clientChan:
if !ok {
break
}
c.closePortalRpcServer()
default:
log.Warn("Waiting for the client to start...")
time.Sleep(time.Second)
}
}
}()
Expected behaviour
When to kill, shisui could be quit with 100% certainty.
Actual behaviour
Sometimes, shisui cannot quit gracefully. And it may be blocked after printing the log:
The text was updated successfully, but these errors were encountered: