Current section
Files
Jump to
Current section
Files
lib/digital_ocean/retry/linear.ex
defmodule DigitalOcean.Retry.Linear do
@behaviour DigitalOcean.Retry
@impl true
def wait_for(_request, config) do
Keyword.get(config.retry_opts, :retry_in, 0)
end
end