Commit a33b8909 authored by Eric's avatar Eric

[Update] fix lock bug

parent a1b2ff4b
......@@ -66,6 +66,9 @@ func (w *WrapperSession) Close() error {
return nil
default:
}
w.mux.Lock()
defer w.mux.Unlock()
_ = w.outReader.Close()
err := w.inWriter.Close()
w.initReadPip()
return err
......@@ -76,8 +79,6 @@ func (w *WrapperSession) Write(p []byte) (int, error) {
}
func (w *WrapperSession) initReadPip() {
w.mux.Lock()
defer w.mux.Unlock()
w.outReader, w.inWriter = io.Pipe()
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment