Chromium Code Reviews| Index: filter/dscache/ds.go |
| diff --git a/filter/dscache/ds.go b/filter/dscache/ds.go |
| index 47586d8a309c5901c0fdec70dfadbf29f9e527b2..06089f64401a0ce374b255c958c7528a0bf200ca 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 becuase they exist |
|
martiniss
2016/01/05 00:17:03
becuase -> because
iannucci
2016/01/05 02:05:22
done
|
| + // (so, not an issue), or becuase memcache is having sad times (in which |
|
martiniss
2016/01/05 00:17:03
copy paste? o_O
iannucci
2016/01/05 02:05:22
done
|
| + // 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( |