save some goroutines

pull/314/head
Darien Raymond 2016-11-19 01:48:38 +01:00
parent 65a49e7fa0
commit ed780951aa
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ func (this *BufferedSegmentWriter) Write(seg Segment) {
}
func (this *BufferedSegmentWriter) FlushWithoutLock() {
go this.writer.Write(this.buffer)
this.writer.Write(this.buffer)
this.buffer = nil
}