Skip to content
Snippets Groups Projects

AccumulatorCache: fix cache statistics if exception is thrown

Merged Frank Winklmeier requested to merge fwinkl/athena:acccache_exc into master
2 files
+ 14
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -110,6 +110,7 @@ class AccumulatorDecorator:
return None
def __call__(self , *args , **kwargs):
cacheHit = None
try:
t0 = time.perf_counter()
res, cacheHit = self._callImpl(*args, **kwargs)
Loading