Skip to content
Snippets Groups Projects
Commit a8e889b3 authored by Gavin M. Roy's avatar Gavin M. Roy
Browse files

Support the ExpiredTokenException

parent 5071a485
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -3,6 +3,14 @@
Version History
===============
 
0.4.2 (2016-02-16)
------------------
- Add support for ``ExpiredTokenException``
0.4.1 (2016-02-16)
------------------
- Pass in kwargs into ``AWSClientException``
0.4.0 (2016-02-05)
------------------
- Add support for the AWS_DEFAULT_REGION environment variable.
Loading
Loading
Loading
Loading
@@ -21,7 +21,7 @@ DESC = 'A low-level Amazon Web Services API client for Tornado'
TESTS_REQUIRE = ['nose', 'mock', 'coverage']
 
setuptools.setup(name='tornado-aws',
version='0.4.1',
version='0.4.2',
description=DESC,
long_description=open('README.rst').read(),
author='Gavin M. Roy',
Loading
Loading
Loading
Loading
@@ -6,6 +6,6 @@ from tornado_aws.client import AWSClient
from tornado_aws.client import AsyncAWSClient
from tornado_aws.client import exceptions
 
__version__ = '0.4.1'
__version__ = '0.4.2'
 
__all__ = ['AWSClient', 'AsyncAWSClient', 'exceptions']
Loading
Loading
@@ -26,7 +26,8 @@ MIME_AWZ_JSON = 'application/x-amz-json-1.0'
 
_REFRESH_EXCEPTIONS = [
'com.amazon.coral.service#InvalidSignatureException',
'com.amazon.coral.service#UnrecognizedClientException'
'com.amazon.coral.service#UnrecognizedClientException',
'com.amazon.coral.service#ExpiredTokenException'
]
 
_HEADER_FORMAT = '{0} Credential={1}/{2}, SignedHeaders={3}, Signature={4}'
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment