Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oracle Responsys: ignore 404s on delete endpoint #5203

Merged
merged 2 commits into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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