make accept loop
This commit is contained in:
parent
0672b051cc
commit
45f18042b7
@ -397,11 +397,34 @@ func (s *rpcServer) Start() error {
|
|||||||
s.opts.Address = ts.Addr()
|
s.opts.Address = ts.Addr()
|
||||||
s.Unlock()
|
s.Unlock()
|
||||||
|
|
||||||
go ts.Accept(s.accept)
|
exit := make(chan bool, 1)
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
for {
|
||||||
|
err := ts.Accept(s.accept)
|
||||||
|
|
||||||
|
// check if we're supposed to exit
|
||||||
|
select {
|
||||||
|
case <-exit:
|
||||||
|
return
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
|
||||||
|
// check the error and backoff
|
||||||
|
if err != nil {
|
||||||
|
log.Logf("Accept error: %v", err)
|
||||||
|
time.Sleep(time.Second)
|
||||||
|
}
|
||||||
|
|
||||||
|
// no error just exit
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
// wait for exit
|
// wait for exit
|
||||||
ch := <-s.exit
|
ch := <-s.exit
|
||||||
|
exit <- true
|
||||||
|
|
||||||
// wait for requests to finish
|
// wait for requests to finish
|
||||||
if wait(s.opts.Context) {
|
if wait(s.opts.Context) {
|
||||||
|
Loading…
Reference in New Issue
Block a user