hello all :slightly_smiling_face: I have a little ...
# troubleshooting
e
hello all 🙂 I have a little python script that I want to run as final step on my pipeline, which I successfully added as utility. When I run
meltano invoke my-custom-utility
everything works and gets executed as expected. When I run it as part of my composable pipeline though, I get an error.
Copy code
Run invocation could not be completed as block failed: No command to run
The command I’m running (which works fine without the utility step) is the following:
Copy code
meltano --log-level=debug --environment test run tap-postgres target-jsonl my-custom-utility
It’s the first time I’m working with custom utilities, any idea what I might be missing here? thanks a lot! 🙂
never mind, I needed to add the run command explicitly to the yml utility setup, I somehow assumed providing the executable would be enough. works fine now 🙂
t
@elena_velte which version of Meltano are you running? We dropped the command requirement in 2.3 https://github.com/meltano/meltano/releases/tag/v2.3.0
e
yeah much older one 😞 it’s a big project to migrate so we are postponing, but it’s probably about time 😬 thanks for the insight!