hound
hound copied to clipboard
retry_time in config.exs only works after recompiling
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.