Skip to content
Snippets Groups Projects
Commit 2352974a authored by Erik Johnston's avatar Erik Johnston
Browse files

Merge branch 'erikj/cache_deferreds' of github.com:matrix-org/synapse into...

Merge branch 'erikj/cache_deferreds' of github.com:matrix-org/synapse into erikj/cache_varargs_interface
parents ffab798a 9c5385b5
No related branches found
No related tags found
No related merge requests found
......@@ -184,7 +184,7 @@ class CacheDescriptor(object):
try:
cached_result_d = self.cache.get(keyargs)
observed = cached_result_d.observe()
observer = cached_result_d.observe()
if DEBUG_CACHES:
@defer.inlineCallbacks
def check_result(cached_result):
......@@ -197,9 +197,9 @@ class CacheDescriptor(object):
)
raise ValueError("Stale cache entry")
defer.returnValue(cached_result)
observed.addCallback(check_result)
observer.addCallback(check_result)
return observed
return observer
except KeyError:
# Get the sequence number of the cache before reading from the
# database so that we can tell if the cache is invalidated
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment