Commit cc53d77e authored by Eric's avatar Eric

[bugfix] fix lock bugs

parent 226a91fa
......@@ -66,9 +66,6 @@ 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
......@@ -79,6 +76,8 @@ 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