Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

fix: don't swallow errors in outreach #1929

Merged
merged 1 commit into from
Nov 16, 2023
Merged
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
1 change: 1 addition & 0 deletions packages/core/remotes/impl/outreach/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1434,6 +1434,7 @@ class OutreachClient extends AbstractEngagementRemoteClient {
if (e.response?.status === 400) {
throw new SGConnectionNoLongerAuthenticatedError('Unable to refresh access token. Refresh token invalid.');
}
throw e;
}
}
}
Expand Down