require Logger
@adapter_options [
- pool: :media
+ pool: :media,
+ recv_timeout: 10_000
]
- defp adapter_options do
- if Application.get_env(:tesla, :adapter) == Tesla.Adapter.Hackney do
- Keyword.put(@adapter_options, :recv_timeout, 10_000)
- else
- @adapter_options
- end
- end
-
def perform(:prefetch, url) do
# Fetching only proxiable resources
if MediaProxy.enabled?() and MediaProxy.url_proxiable?(url) do
Logger.debug("Prefetching #{inspect(url)} as #{inspect(prefetch_url)}")
- HTTP.get(prefetch_url, [], adapter: adapter_options())
+ HTTP.get(prefetch_url, [], @adapter_options)
end
end