-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: salesforce: handle ECONNABORTED error (#2732)
* fix: salesforce: handle ECONNABORTED error * chore: added status codes to universal error code handler * chore: added error codes to salesforce error code handler * fix: using correct error response * comment addressed+1
- Loading branch information
1 parent
4079ec6
commit 6b23a9b
Showing
4 changed files
with
135 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,70 @@ | ||
[ | ||
{ | ||
"type": "REST", | ||
"files": {}, | ||
"method": "POST", | ||
"userId": "", | ||
"headers": { | ||
"Content-Type": "application/json", | ||
"Authorization": "Bearer token" | ||
}, | ||
"version": "1", | ||
"endpoint": "https://rudderstack.my.salesforce.com/services/data/v50.0/sobjects/Lead/101", | ||
"body": { | ||
"XML": {}, | ||
"FORM": {}, | ||
"JSON": { | ||
"Email": "[email protected]", | ||
"Company": "sbermarket.ru", | ||
"LastName": "Корнилов", | ||
"FirstName": "Денис", | ||
"LeadSource": "App Signup", | ||
"account_type__c": "free_trial" | ||
}, | ||
"JSON_ARRAY": {} | ||
}, | ||
"metadata": { | ||
"destInfo": { | ||
"authKey": "2HezPl1w11opbFSxnLDEgZ7kWTf" | ||
} | ||
}, | ||
"params": { | ||
"destination": "salesforce" | ||
} | ||
}, | ||
{ | ||
"type": "REST", | ||
"files": {}, | ||
"method": "POST", | ||
"userId": "", | ||
"headers": { | ||
"Content-Type": "application/json", | ||
"Authorization": "Bearer token" | ||
}, | ||
"version": "1", | ||
"endpoint": "https://rudderstack.my.salesforce.com/services/data/v50.0/sobjects/Lead/102", | ||
"body": { | ||
"XML": {}, | ||
"FORM": {}, | ||
"JSON": { | ||
"Email": "[email protected]", | ||
"Company": "sbermarket.ru", | ||
"LastName": "Корнилов", | ||
"FirstName": "Денис", | ||
"LeadSource": "App Signup", | ||
"account_type__c": "free_trial" | ||
}, | ||
"JSON_ARRAY": {} | ||
}, | ||
"metadata": { | ||
"destInfo": { | ||
"authKey": "2HezPl1w11opbFSxnLDEgZ7kWTf" | ||
} | ||
}, | ||
"params": { | ||
"destination": "salesforce" | ||
} | ||
}, | ||
{ | ||
"type": "REST", | ||
"files": {}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters