Hello, I started a SQL tap project using the Melta...
# troubleshooting
b
Hello, I started a SQL tap project using the Meltano SDK and after some time I noticed that the tap.py and client.py files didn’t pull in all the SQL specific changes and additions from the cookiecutter tap templates. Has anyone run into this and if you have do you have any tips on what I might have missed while initializing my project.
p
It looks like the cookiecutter for the tap has a bug in it. There is a client.py for
{% if 'SQL' == cookiebutter.stream_type %}
and also one for
{% if cookiecutter.stream_type not in ('REST', 'GraphQL') %}
so the second one overwrites the first one and you don’t get the sql-specific
client.py
file.
b
Thanks for finding that. I just couldn't see what was causing it. Thanks again.