Exception: Contentful::RateLimitExceeded
- Defined in:
- lib/contentful/error.rb
Overview
429
Constant Summary collapse
- RATE_LIMIT_RESET_HEADER_KEY =
Rate Limit Reset Header Key
'x-contentful-ratelimit-reset'
Instance Attribute Summary
Attributes inherited from Error
Instance Method Summary collapse
-
#reset_time ⇒ Object
Time until next available request, in seconds.
- #reset_time? ⇒ Boolean
Methods inherited from Error
Constructor Details
This class inherits a constructor from Contentful::Error
Instance Method Details
#reset_time ⇒ Object
Time until next available request, in seconds.
147 148 149 |
# File 'lib/contentful/error.rb', line 147 def reset_time @reset_time ||= @response.raw[RATE_LIMIT_RESET_HEADER_KEY] end |
#reset_time? ⇒ Boolean
140 141 142 143 144 |
# File 'lib/contentful/error.rb', line 140 def reset_time? # rubocop:disable Style/DoubleNegation !!reset_time # rubocop:enable Style/DoubleNegation end |