No commit activity in last 3 years
No release in over 3 years
Excon middleware to exponentially backoff calling AWS APIs when throttled or experiencing errors.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
>= 0
>= 0
>= 0

Runtime

>= 0
 Project Readme

Excon::Middleware::AWS::ExponentialBackoff

Excon middleware to exponentially backoff calling AWS APIs when throttled or experiencing errors.

Installation

Add this line to your application's Gemfile:

gem 'excon-middleware-aws-exponential_backoff'

And then execute:

$ bundle

Or install it yourself as:

$ gem install excon-middleware-aws-exponential_backoff

Usage

This gem is intended to be used with fog and excon when communicating with AWS APIs.

require "fog"
require "excon/middleware/aws/exponential_backoff/include"

10.times do
  p Fog::DNS::AWS.new(aws_access_key_id: 'key', aws_secret_access_key: 'secret').list_hosted_zones
end

Contributing

  1. Fork it ( https://github.com/mikehale/excon-middleware-aws-exponential_backoff/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Inspiration