external-systems 0.103.0rc2__tar.gz → 0.103.0rc3__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.
Potentially problematic release.
This version of external-systems might be problematic. Click here for more details.
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/PKG-INFO +1 -1
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/_version.py +1 -1
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_sources.py +3 -9
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/pyproject.toml +1 -1
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/LICENSE.txt +0 -0
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/README.md +0 -0
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/__init__.py +0 -0
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/py.typed +0 -0
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/__init__.py +0 -0
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_api.py +0 -0
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_connections.py +0 -0
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_proxies.py +0 -0
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_refreshable.py +0 -0
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_sockets.py +0 -0
- {external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_utils.py +0 -0
{external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_sources.py
RENAMED
|
@@ -113,17 +113,11 @@ class Source:
|
|
|
113
113
|
except PermissionError:
|
|
114
114
|
log.warning("PermissionError when writing to provided CA bundle path, falling back to temporary file.")
|
|
115
115
|
|
|
116
|
-
#
|
|
116
|
+
# Finally, try reading the provided CA bundle path and appending all content to the new CA bundle
|
|
117
117
|
new_ca_contents = []
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
new_ca_contents.append(provided_ca_bundle_file.read())
|
|
121
|
-
except PermissionError:
|
|
122
|
-
log.warning(
|
|
123
|
-
"PermissionError when reading from provided CA bundle path, falling back to temporary file with only the Source defined certificates."
|
|
124
|
-
)
|
|
118
|
+
with open(provided_ca_bundle_path) as provided_ca_bundle_file:
|
|
119
|
+
new_ca_contents.append(provided_ca_bundle_file.read())
|
|
125
120
|
|
|
126
|
-
# Finally, if no permissions to read or write to the provided CA bundle path, create a temporary file with only the Source defined certificates
|
|
127
121
|
for required_ca in self._source_parameters.server_certificates.values():
|
|
128
122
|
new_ca_contents.append(required_ca)
|
|
129
123
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/__init__.py
RENAMED
|
File without changes
|
{external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_api.py
RENAMED
|
File without changes
|
{external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_connections.py
RENAMED
|
File without changes
|
{external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_proxies.py
RENAMED
|
File without changes
|
{external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_refreshable.py
RENAMED
|
File without changes
|
{external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_sockets.py
RENAMED
|
File without changes
|
{external_systems-0.103.0rc2 → external_systems-0.103.0rc3}/external_systems/sources/_utils.py
RENAMED
|
File without changes
|