-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* send request w/ Requests. * Move to urllib3, drop base64 encoding, fix tests. * Remove rest of urllib stuff. * json.load str, not bytes. * Stop encoding payload. * POST urlencoded data payload as www-form-urlencoded * Generate , add basic urllib3.Retry config. * remove import * Retry per request, not per PoolMgr. * Timeouts and status code retries. * Expose retry options in consumer initializer. * use uuid4 * Fix str test in py2 * test empty track dict * Retry tweaks. * Groups doc fix
- Loading branch information
David Grant
authored
Sep 12, 2020
1 parent
a6ec21e
commit 728769c
Showing
3 changed files
with
126 additions
and
89 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 |
---|---|---|
|
@@ -24,7 +24,10 @@ def find_version(*paths): | |
author='Mixpanel, Inc.', | ||
author_email='[email protected]', | ||
license='Apache', | ||
install_requires=['six >= 1.9.0'], | ||
install_requires=[ | ||
'six >= 1.9.0', | ||
'urllib3 >= 1.21.1', | ||
], | ||
|
||
classifiers=[ | ||
'License :: OSI Approved :: Apache Software License', | ||
|
Oops, something went wrong.