-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Source Salesforce: Deprecate API Type parameter #9302
Source Salesforce: Deprecate API Type parameter #9302
Conversation
/test connector=connectors/source-salesforce
|
/test connector=connectors/source-salesforce
|
/test connector=connectors/source-salesforce
|
@@ -5,7 +5,7 @@ | |||
"title": "Salesforce Source Spec", | |||
"type": "object", | |||
"required": ["client_id", "client_secret", "refresh_token"], | |||
"additionalProperties": false, | |||
"additionalProperties": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Set it to true because api_type
parameter is removed from the spec
but it is provided on config files. It's temporary solution not to fail checks.
/test connector=connectors/source-salesforce
|
/test connector=connectors/source-salesforce
|
/publish connector=connectors/source-salesforce
|
What
Resolves issue
How
For the initial sync (without state), always use BULK API, where it's possible (Some streams don't support BULK API, for them always use REST). For the subsequent incremental syncs (when state is provided), use REST API.
Recommended reading order
This change is