mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Be polite and ensure we use @functools.wraps() when creating a function decorator
This commit is contained in:
parent
6d33f97703
commit
1489521ee5
@ -25,6 +25,7 @@ import synapse.metrics
|
||||
from twisted.internet import defer
|
||||
|
||||
from collections import namedtuple, OrderedDict
|
||||
import functools
|
||||
import simplejson as json
|
||||
import sys
|
||||
import time
|
||||
@ -81,6 +82,7 @@ def cached(max_entries=1000):
|
||||
|
||||
cache[key] = value
|
||||
|
||||
@functools.wraps(orig)
|
||||
@defer.inlineCallbacks
|
||||
def wrapped(self, key):
|
||||
if key in cache:
|
||||
|
Loading…
Reference in New Issue
Block a user