Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
raise error for failures on contact patching
Browse files Browse the repository at this point in the history
keyn4 committed Jan 28, 2025
1 parent a95debe commit 6532a14
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions target_salesforce_v3/sinks.py
Original file line number Diff line number Diff line change
@@ -241,6 +241,7 @@ def upsert_record(self, record, context):
return id, True, state_updates
except Exception as e:
self.logger.exception(f"Could not PATCH to {url}: {e}")
raise e
if record:
try:
response = self.request_api("POST", request_data=record)

0 comments on commit 6532a14

Please sign in to comment.