-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TDL-23384: Add retry for chunked encoding errors (#61)
* add retry for chunked encoding error * Add exponential backoff to `request_export` * Remove backoff because this is a generator Throwing an exception in the generator seems to just raise a `StopIteration` * Add retry logic to the caller of `client.request_export` * Add a test for retrying on `ChunkedEncodingError`s * Bump to `v1.5.1`, update changelog --------- Co-authored-by: Leslie VanDeMark <[email protected]>
- Loading branch information
1 parent
6403ea4
commit de02287
Showing
5 changed files
with
54 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
from setuptools import setup, find_packages | ||
|
||
setup(name='tap-mixpanel', | ||
version='1.5.0', | ||
version='1.5.1', | ||
description='Singer.io tap for extracting data from the mixpanel API', | ||
author='[email protected]', | ||
classifiers=['Programming Language :: Python :: 3 :: Only'], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters