Metadata-Version: 1.1
Name: pyramid_retry
Version: 0.2
Summary: An execution policy for Pyramid that supports retrying requests after certain failure exceptions.
Home-page: https://github.com/Pylons/pyramid_retry
Author: Michael Merickel
Author-email: michael@merickel.org
License: UNKNOWN
Description: =============
        pyramid_retry
        =============
        
        .. image:: https://img.shields.io/pypi/v/pyramid_retry.svg
            :target: https://pypi.python.org/pypi/pyramid_retry
        
        .. image:: https://img.shields.io/travis/Pylons/pyramid_retry.svg
            :target: https://travis-ci.org/Pylons/pyramid_retry
        
        .. image:: https://readthedocs.org/projects/pyramid_retry/badge/?version=latest
            :target: https://readthedocs.org/projects/pyramid_retry/?badge=latest
            :alt: Documentation Status
        
        ``pyramid_retry`` is an execution policy for Pyramid that wraps requests and
        can retry them a configurable number of times under certain "retryable" error
        conditions before indicating a failure to the client.
        
        See http://docs.pylonsproject.org/projects/pyramid-retry/en/latest/
        or ``docs/index.rst`` in this distribution for detailed
        documentation.
        
        
        0.2 (2017-03-02)
        ================
        
        - Change the default attempts to 3 instead of 1.
        
        - Rename the view predicates to ``is_last_attempt`` and ``is_exc_retryable``.
        
        - Drop support for the ``tm.attempts`` setting.
        
        - The ``retry.attempts`` setting is always set now in
          ``registry.settings['retry.attempts']`` so that apps can inspect it.
        
        0.1 (2017-03-01)
        ================
        
        - Initial release.
        
Keywords: pyramid wsgi retry attempt
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
