airbyte-cdk 6.8.1rc2__py3-none-any.whl → 6.8.1rc4__py3-none-any.whl
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.
- airbyte_cdk/sources/streams/http/http_client.py +4 -1
- {airbyte_cdk-6.8.1rc2.dist-info → airbyte_cdk-6.8.1rc4.dist-info}/METADATA +1 -1
- {airbyte_cdk-6.8.1rc2.dist-info → airbyte_cdk-6.8.1rc4.dist-info}/RECORD +6 -6
- {airbyte_cdk-6.8.1rc2.dist-info → airbyte_cdk-6.8.1rc4.dist-info}/LICENSE.txt +0 -0
- {airbyte_cdk-6.8.1rc2.dist-info → airbyte_cdk-6.8.1rc4.dist-info}/WHEEL +0 -0
- {airbyte_cdk-6.8.1rc2.dist-info → airbyte_cdk-6.8.1rc4.dist-info}/entry_points.txt +0 -0
@@ -526,7 +526,10 @@ class SkipFailureSQLiteDict(requests_cache.backends.sqlite.SQLiteDict):
|
|
526
526
|
try:
|
527
527
|
return super().__getitem__(key) # type: ignore # lib is not typed
|
528
528
|
except Exception as exception:
|
529
|
-
|
529
|
+
if not isinstance(exception, KeyError):
|
530
|
+
logger.warning(f"Error while retrieving item from cache: {exception}")
|
531
|
+
else:
|
532
|
+
raise exception
|
530
533
|
|
531
534
|
def _write(self, key: str, value: str) -> None:
|
532
535
|
try:
|
@@ -273,7 +273,7 @@ airbyte_cdk/sources/streams/http/error_handlers/json_error_message_parser.py,sha
|
|
273
273
|
airbyte_cdk/sources/streams/http/error_handlers/response_models.py,sha256=xGIVELBFY0TmH9aUq1ikoqJz8oHLr6di2JLvKWVEO-s,2236
|
274
274
|
airbyte_cdk/sources/streams/http/exceptions.py,sha256=njC7MlMJoFYcSGz4mIp6-bqLFTr6vC8ej25X0oSeyjE,1824
|
275
275
|
airbyte_cdk/sources/streams/http/http.py,sha256=h0bq4arzMeJsR-5HZNfGYXtZhgVvLbW6myi9fuhMayU,28467
|
276
|
-
airbyte_cdk/sources/streams/http/http_client.py,sha256=
|
276
|
+
airbyte_cdk/sources/streams/http/http_client.py,sha256=PeFhzZQ99ANJbwRv0z9n88FEaZAgxXnIW7zUIAcxpBw,23068
|
277
277
|
airbyte_cdk/sources/streams/http/rate_limiting.py,sha256=IwdjrHKUnU97XO4qONgYRv4YYW51xQ8SJm4WLafXDB8,6351
|
278
278
|
airbyte_cdk/sources/streams/http/requests_native_auth/__init__.py,sha256=RN0D3nOX1xLgwEwKWu6pkGy3XqBFzKSNZ8Lf6umU2eY,413
|
279
279
|
airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py,sha256=nxI94yJ3bGfpDO8RR3QvOJ-PSW0n9CElSAkgl5ae80Y,10321
|
@@ -330,8 +330,8 @@ airbyte_cdk/utils/slice_hasher.py,sha256=-pHexlNYoWYPnXNH-M7HEbjmeJe9Zk7SJijdQ7d
|
|
330
330
|
airbyte_cdk/utils/spec_schema_transformations.py,sha256=LVc9KbtMeV_z99jWo0Ou8u4l6eBJ0BWNhxj4zrrGKRs,763
|
331
331
|
airbyte_cdk/utils/stream_status_utils.py,sha256=ZmBoiy5HVbUEHAMrUONxZvxnvfV9CesmQJLDTAIWnWw,1171
|
332
332
|
airbyte_cdk/utils/traced_exception.py,sha256=a6q51tBS3IdtefuOiL1eBwSmnNAXfjFMlMjSIQ_Tl-o,6165
|
333
|
-
airbyte_cdk-6.8.
|
334
|
-
airbyte_cdk-6.8.
|
335
|
-
airbyte_cdk-6.8.
|
336
|
-
airbyte_cdk-6.8.
|
337
|
-
airbyte_cdk-6.8.
|
333
|
+
airbyte_cdk-6.8.1rc4.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
|
334
|
+
airbyte_cdk-6.8.1rc4.dist-info/METADATA,sha256=juSZfLDXjKo_htMIQOanwK6S1O4tOa0rbBLl_hdNLjQ,13522
|
335
|
+
airbyte_cdk-6.8.1rc4.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
336
|
+
airbyte_cdk-6.8.1rc4.dist-info/entry_points.txt,sha256=fj-e3PAQvsxsQzyyq8UkG1k8spunWnD4BAH2AwlR6NM,95
|
337
|
+
airbyte_cdk-6.8.1rc4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|