s84662355 opened a new issue, #105:
URL: https://github.com/apache/dubbo-getty/issues/105

   session.go 
   
   s.once.Do(func() {
        // let read/Write timeout asap
        now := time.Now()
        if conn := s.Conn(); conn != nil {
                conn.SetReadDeadline(now.Add(s.readTimeout()))
                conn.SetWriteDeadline(now.Add(s.writeTimeout()))
        }
        close(s.done)
        c := s.GetAttribute(sessionClientKey)
        if clt, ok := c.(*client); ok {
                //clt.reConnect()
                clt.Close()
   
        }
   })
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to