We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d61e3ad commit 7e28cf8Copy full SHA for 7e28cf8
core/monitoring/monitoring.py
@@ -285,10 +285,10 @@ class Proxy:
285
def __init__(self, default_cls):
286
self.instance = default_cls()
287
288
- def got_histogram(self, param):
+ def got_histogram(self, *args_, **kwargs_):
289
def decor_(func):
290
def wrap(*args, **kwargs):
291
- wrapped_func = self.instance.got_histogram(param)(func)
+ wrapped_func = self.instance.got_histogram(*args_, **kwargs_)(func)
292
value = wrapped_func(*args, **kwargs)
293
return value
294
return wrap
0 commit comments