Address race condition in client tests (closes #784)

pull/4/head
Stephen J Day 2014-11-26 15:33:33 -08:00
parent 9da63d0bd2
commit c706657502
1 changed files with 7 additions and 0 deletions

View File

@ -211,6 +211,13 @@ func (mlw *memoryLayerWriter) Write(p []byte) (int, error) {
}
func (mlw *memoryLayerWriter) Close() error {
mlw.ml.cond.L.Lock()
defer mlw.ml.cond.L.Unlock()
return mlw.close()
}
func (mlw *memoryLayerWriter) close() error {
mlw.ml.writing = false
mlw.ml.cond.Broadcast()
return nil