Conner Panarella
Conner Panarella
## Issue Description When modifying a member of a collection property of an object and then issuing a PATCH request, the entire collection and all properties are sent as opposed...
Remove bug introduced in latest commit. The docker containers do not expect the arguments with `--`. This is noted here: https://github.com/MeltanoLabs/tap-airbyte-wrapper/commit/e1349aab8c3b338babd0b1de51374733ce68ecb4#commitcomment-143275245
When using AireByte sources like `source-mssql` or `source-postgres` an exception is raised like: > tap_airbyte.tap.AirbyteException: Discover failed with return code 1: Unknown option: discover Doing a bit of digging, it...
In the ODataHealthyResponseValidator class there is this bit under `requireHealthyResponse`: https://github.com/SAP/cloud-sdk-java/blob/845ff8349c9a85afad0986f860d3ef6956459f74/datamodel/odata-client/src/main/java/com/sap/cloud/sdk/datamodel/odata/client/request/ODataHealthyResponseValidator.java#L59C1-L72C33 ```java final ODataResponseException preparedException = new ODataResponseException( batchFailedRequest == null ? request : batchFailedRequest, httpResponse, msg, null); final Try...