aipmodel 0.2.75__tar.gz → 0.2.76__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {aipmodel-0.2.75 → aipmodel-0.2.76}/PKG-INFO +1 -1
- {aipmodel-0.2.75 → aipmodel-0.2.76}/aipmodel/CephS3Manager.py +5 -0
- {aipmodel-0.2.75 → aipmodel-0.2.76}/aipmodel/__init__.py +1 -1
- {aipmodel-0.2.75 → aipmodel-0.2.76}/aipmodel.egg-info/PKG-INFO +1 -1
- {aipmodel-0.2.75 → aipmodel-0.2.76}/setup.py +1 -1
- {aipmodel-0.2.75 → aipmodel-0.2.76}/MANIFEST.in +0 -0
- {aipmodel-0.2.75 → aipmodel-0.2.76}/README.md +0 -0
- {aipmodel-0.2.75 → aipmodel-0.2.76}/aipmodel/acl_manager.py +0 -0
- {aipmodel-0.2.75 → aipmodel-0.2.76}/aipmodel/exceptions.py +0 -0
- {aipmodel-0.2.75 → aipmodel-0.2.76}/aipmodel/model_registry.py +0 -0
- {aipmodel-0.2.75 → aipmodel-0.2.76}/aipmodel/template.py +0 -0
- {aipmodel-0.2.75 → aipmodel-0.2.76}/aipmodel/update_checker.py +0 -0
- {aipmodel-0.2.75 → aipmodel-0.2.76}/aipmodel.egg-info/SOURCES.txt +0 -0
- {aipmodel-0.2.75 → aipmodel-0.2.76}/aipmodel.egg-info/dependency_links.txt +0 -0
- {aipmodel-0.2.75 → aipmodel-0.2.76}/aipmodel.egg-info/requires.txt +0 -0
- {aipmodel-0.2.75 → aipmodel-0.2.76}/aipmodel.egg-info/top_level.txt +0 -0
- {aipmodel-0.2.75 → aipmodel-0.2.76}/requirements.txt +0 -0
- {aipmodel-0.2.75 → aipmodel-0.2.76}/setup.cfg +0 -0
|
@@ -37,6 +37,11 @@ _TRANSIENT_TRANSFER_ERRORS = tuple(
|
|
|
37
37
|
"EndpointConnectionError",
|
|
38
38
|
"ReadTimeoutError",
|
|
39
39
|
"IncompleteReadError",
|
|
40
|
+
# boto3 wraps a mid-stream connection break (urllib3 ProtocolError /
|
|
41
|
+
# http IncompleteRead) into ResponseStreamingError before it reaches the
|
|
42
|
+
# caller, so the underlying transient types below never match on their
|
|
43
|
+
# own for a download that dies mid-body. Retry on the wrapper too.
|
|
44
|
+
"ResponseStreamingError",
|
|
40
45
|
)
|
|
41
46
|
if hasattr(_botocore_exceptions, _name)
|
|
42
47
|
) + (
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|