Hi I am setting up tap-salesforce in that I have ...
# troubleshooting
r
Hi I am setting up tap-salesforce in that I have done following configuration
Copy code
- name: tap-salesforce_1_20240708172750
    inherit_from: tap-salesforce
    capabilities:
    - discover
    - properties
    - state
    config:
      api_type: REST
      is_sandbox: false
      max_workers: 8
      select_fields_by_default: true
      start_date: '2024-11-05T01:00:00Z'
      state_message_threshold: 1000
      username: <mailto:abc@user.com|abc@user.com>
      select: "['Account.*']"
But when it runs then it access all the objects of salesforce and create tables of all the objects. As per the select it should create table of account only. So is it a normal behaviour ? Or am I doing something wrong in configuration ? Thanks in advance
a
Select should be up a level in line with
config
, not under
config:
key
👍 2