flush once

This commit is contained in:
Zack Scholl 2018-09-26 11:07:17 -07:00
parent cc0ef58b9f
commit 8ddd7aff06
1 changed files with 0 additions and 1 deletions

View File

@ -41,7 +41,6 @@ func (c *Comm) Close() {
func (c *Comm) Write(b []byte) (int, error) {
c.writer.Write([]byte(fmt.Sprintf("%0.6d", len(b))))
c.writer.Flush()
n, err := c.writer.Write(b)
if n != len(b) {
err = fmt.Errorf("wanted to write %d but wrote %d", n, len(b))