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

Reraise exception

parent ff2d7551
No related branches found
No related tags found
No related merge requests found
......@@ -81,6 +81,7 @@ class ExpiringCache(object):
cache_counter.inc_hits(self._cache_name)
except KeyError:
cache_counter.inc_misses(self._cache_name)
raise
if self._reset_expiry_on_get:
entry.time = self._clock.time_msec()
......
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