Does plugin inheritance allow more than two levels...
# troubleshooting
m
Does plugin inheritance allow more than two levels (more than just parent/child) ? I was hoping to do something like
Copy code
- name: target-redshift
      variant: transferwise
      pip_url: git+<https://github.com/menzenski/pipelinewise-target-redshift.git@856f6390805e4d64e743901b5f585f01a93df6a1>
      config:
        batch_size_rows: 10000
        add_metadata_columns: true
        primary_key_required: false
    - name: target-redshift-staging-google-analytics
      inherit_from: target-redshift
      config:
        dbname: staging_google_analytics
    - name: target-redshift-google-analytics-ua
      inherit_from: target-redshift-google-analytics
      config:
        default_target_schema: google_analytics_ua
but this throws an error:
Copy code
meltano install
Need help fixing this problem? Visit <http://melta.no/> for troubleshooting steps, or to
join our friendly Slack community.

Could not find parent plugin for loader 'target-redshift-google-analytics-ua': Loader 'target-redshift-google-analytics' is not known to Meltano
a
name: target-redshift-staging-google-analytics
!=
inherit_from: target-redshift-google-analytics
m
Oh dang it
Thanks! facepalm trek
It works fine now that I’ve made that fix