Skip to content

Commit

Permalink
Oracle Responsys: ignore 404s on delete endpoint (#5203)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertKeyser authored Aug 16, 2024
1 parent d739aad commit 876ae7e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ The types of changes are:

## [Unreleased](https://github.com/ethyca/fides/compare/2.43.0...main)

### Fixed
- Ignore `404` errors on Oracle Responsys deletions [#5203](https://github.com/ethyca/fides/pull/5203)

## [2.43.0](https://github.com/ethyca/fides/compare/2.42.1...2.43.0)

Expand Down
2 changes: 1 addition & 1 deletion data/saas/config/oracle_responsys_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ saas_config:
name: Oracle Responsys
type: oracle_responsys
description: A sample schema representing the Oracle Responsys connector for Fides
version: 0.0.2
version: 0.0.3

connector_params:
- name: domain
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,8 @@ def oracle_responsys_profile_list_recipients_delete(
SaaSRequestParams(
method=HTTPMethod.DELETE,
path=f"/rest/api/v1.3/lists/{list_id}/members/{responsys_id}",
)
),
[404],
)

rows_deleted += 1
Expand Down

0 comments on commit 876ae7e

Please sign in to comment.