Hey folks, I updated a singer tap repo that is ref...
# troubleshooting
d
Hey folks, I updated a singer tap repo that is referenced in my
meltano.yml
to include a new stream. Running
meltano elt
even after
meltano install
doesn't create a table for the new stream in the target. Do I need to pass
--full-refresh
or is there another gotcha I might be missing?
p
Hey Daniel! I think meltano might have your tap pacakge cached. Try running
meltano install <tap_name> --clean
d
That did it i'm running this in CI so I'll just add the --clean flag to the install command. Thanks!