I’m using `tap-salesforce` transferwise variant. I...
# plugins-general
j
I’m using
tap-salesforce
transferwise variant. I got it configured and can do a
meltano select --list select
and see all the tables I want to extract, but when I run
meltano elt tap-salesforce target-snowflake
the job runs to completion without actually extracting or loading any data. No errors. here’s how I configured it:
Copy code
- name: tap-salesforce
    namespace: tap_salesforce
    pip_url: git+<https://github.com/transferwise/pipelinewise-tap-salesforce.git>
    executable: tap-salesforce
    capabilities:
      - catalog
      - discover
      - state
      - config
      - properties
    settings:
      - name: client_id
      - name: client_secret
        kind: password
      - name: refresh_token
        kind: password
      - name: start_date
      - name: api_type
      - name: select_fields_by_default
    config:
      api_type: BULK
      select_fields_by_default: true
    select:
      - 'Account.*'
secrets are being provided by environment variables. and I authentication is working because that’s really the only log that get provided.