Don't log unknown cache warnings in workers

This commit is contained in:
Erik Johnston 2017-02-28 16:22:41 +00:00
parent d638a7484b
commit e933a2712d

View File

@ -54,7 +54,9 @@ class BaseSlavedStore(SQLBaseStore):
try:
getattr(self, cache_func).invalidate(tuple(keys))
except AttributeError:
logger.info("Got unexpected cache_func: %r", cache_func)
# We probably haven't pulled in the cache in this worker,
# which is fine.
pass
self._cache_id_gen.advance(int(stream["position"]))
return defer.succeed(None)