Clear up expired url cache every 10s

pull/2480/head
Erik Johnston 2017-09-28 13:56:53 +01:00
parent e1e7d76cf1
commit 7cc483aa0e
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class PreviewUrlResource(Resource):
self.downloads = {}
self._cleaner_loop = self.clock.looping_call(
self._expire_url_cache_data, 30 * 1000
self._expire_url_cache_data, 10 * 1000
)
def render_GET(self, request):