Changelog for Attempt version 0.4.0

Enhancements

  • Add backoff strategy delay to retry requests

  • Add Ecto, Postgrex, DBConnection exceptions to the exception classifier

Changelog for Attempt version 0.3.0

Enhancements

  • Add a new backoff strategy Attempt.Retry.Backoff.None which does as you’d expect and is the default strategy

  • Add a macro Attempt.execute/1/2 that permits a block form of execution:

  require Attempt
  Attempt.execute tries: 3 do
    IO.puts "Hello world"
  end

Changes

Changelog for Attempt version 0.2.0

Enhancements