Fix typo in url cache expiry timer

pull/2480/head
Erik Johnston 2017-09-28 12:59:01 +01:00
parent 761d255fdf
commit 5f501ec7e2
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 * 10000
self._expire_url_cache_data, 30 * 1000
)
def render_GET(self, request):