Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix typo in url cache expiry timer
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Sep 28, 2017
1 parent 761d255 commit 5f501ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/rest/media/v1/preview_url_resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def __init__(self, hs, media_repo):
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):
Expand Down

0 comments on commit 5f501ec

Please sign in to comment.