Hey,
We're something seeing timeout errors on GitHub Actions when omitting the timeout value.
According to this line
|
def resolve(domain, type \\ :a, opts \\ [], timeout \\ :infinity) do |
the default value should be
:infinity.
In that case, how is it possible to get a timeout error with the following code?
DNS.resolve("default._domainkey.#{@domain_name}", :txt)
Hey,
We're something seeing timeout errors on GitHub Actions when omitting the timeout value.
According to this line
elixir-dns/lib/dns.ex
Line 32 in a32f699
:infinity.In that case, how is it possible to get a timeout error with the following code?