We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4687726 commit 0829662Copy full SHA for 0829662
airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py
@@ -424,6 +424,11 @@ def logger(self) -> logging.Logger:
424
425
426
class SafeResponse(requests.Response):
427
+ """
428
+ A subclass of requests.Response that acts as an interface to migrate parsed child records
429
+ into a response object. This allows seamless interaction with child records as if they
430
+ were original response, ensuring compatibility with methods that expect requests.Response data type.
431
432
def __getattr__(self, name: str) -> Any:
433
return getattr(requests.Response, name, None)
434
0 commit comments