Skip to content

Commit

Permalink
fix: increase wms service cache timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
AmooHashem committed Nov 5, 2024
1 parent d948ca0 commit d62ef59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxies/website_service/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class WMSConfig:
"""Configuration settings for WMS client."""
base_url: str = settings.WMS_URL
cache_timeout: int = getattr(settings, 'WMS_CACHE_TIMEOUT', 60 * 15)
cache_timeout: int = getattr(settings, 'WMS_CACHE_TIMEOUT', 60 * 60 * 24)
cache_prefix: str = 'wms_website_'
request_timeout: int = 10

Expand Down

0 comments on commit d62ef59

Please sign in to comment.