forked from TrueCloudLab/distribution
Address race condition in client tests (closes #784)
This commit is contained in:
parent
9da63d0bd2
commit
c706657502
1 changed files with 7 additions and 0 deletions
|
@ -211,6 +211,13 @@ func (mlw *memoryLayerWriter) Write(p []byte) (int, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mlw *memoryLayerWriter) Close() 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.writing = false
|
||||||
mlw.ml.cond.Broadcast()
|
mlw.ml.cond.Broadcast()
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Add table
Reference in a new issue