You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if it's only on my environment, but I want to increase the time between retries by doing this config :hound, retry_time: 1000 in config.exs, but it doesn't seem to get the change. Ran MIX_ENV=dev mix deps.compile but still didn't work, then found a weird combination. If I insert a change on request_utils.ex (a file from hound) for example IO.puts and then recompile using MIX_ENV=dev mix deps.compile it works, but have to do both things, make a change in that file and recompile. If I make the change in config.exs and recompile, without making a change on request_utils.ex it won't work.
The text was updated successfully, but these errors were encountered:
I'm not sure if it's only on my environment, but I want to increase the time between retries by doing this
config :hound, retry_time: 1000
in config.exs, but it doesn't seem to get the change. RanMIX_ENV=dev mix deps.compile
but still didn't work, then found a weird combination. If I insert a change onrequest_utils.ex
(a file from hound) for example IO.puts and then recompile usingMIX_ENV=dev mix deps.compile
it works, but have to do both things, make a change in that file and recompile. If I make the change in config.exs and recompile, without making a change onrequest_utils.ex
it won't work.The text was updated successfully, but these errors were encountered: