Merge pull request #794 from stevvooe/ng-client-race-condition

Address race condition in client tests (closes #784)
pull/4/head
Olivier Gambier 2014-12-01 10:10:43 -08:00
commit f497bceffa
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