Index: filter/dscache/ds.go |
diff --git a/filter/dscache/ds.go b/filter/dscache/ds.go |
index 47586d8a309c5901c0fdec70dfadbf29f9e527b2..542ada6b111cf2335a76602acdf94e10addec238 100644 |
--- a/filter/dscache/ds.go |
+++ b/filter/dscache/ds.go |
@@ -40,9 +40,9 @@ func (d *dsCache) GetMulti(keys []*ds.Key, metas ds.MultiMetaGetter, cb ds.GetMu |
} |
if err := d.mc.AddMulti(lockItems); err != nil { |
- (log.Fields{log.ErrorKey: err}).Warningf( |
- d.c, "dscache: GetMulti: memcache.AddMulti") |
- |
+ // Ignore this error. Either we couldn't add them because they exist |
+ // (so, not an issue), or because memcache is having sad times (in which |
+ // case we'll see so in the GetMulti which immediately follows this). |
} |
if err := d.mc.GetMulti(lockItems); err != nil { |
(log.Fields{log.ErrorKey: err}).Warningf( |