sm
/
cache
1
0
Fork 0

Revert 3986bff for now

This commit is contained in:
Patrick Mylund Nielsen 2013-06-30 22:05:40 -04:00
parent 2fb27e8369
commit baa5a64da4
1 changed files with 3 additions and 4 deletions

View File

@ -876,12 +876,11 @@ func (c *cache) Save(w io.Writer) (err error) {
}
}()
c.RLock()
items := c.items
for _, v := range items {
defer c.RUnlock()
for _, v := range c.items {
gob.Register(v.Object)
}
c.RUnlock()
err = enc.Encode(&items)
err = enc.Encode(&c.items)
return
}