jan_soubusta
01/04/2024, 6:20 PM${{ vars.X }}
.
But it seems that I forgot some variable (they are many).
meltano run fails with the following error:
Cannot start plugin tap-github-org: expected string or bytes-like object, got 'NoneType'
It fails the same way for all taps(github, csv-s3, ...). The same target is used - snowflake.
Anyone has a clue what could be the root cause? Could it be caused by not propagated env variable?Edgar RamÃrez (Arch.dev)
01/05/2024, 4:37 AM>>> open(None)
TypeError: expected str, bytes or os.PathLike object, not NoneType
>>> import json; json.loads(None)
TypeError: the JSON object must be str, bytes or bytearray, not NoneType
>>> from pathlib import Path; Path(None)
TypeError: expected str, bytes or os.PathLike object, not NoneType
jan_soubusta
01/05/2024, 8:17 AMCannot start plugin tap-github-org: Executable 'tap-github' could not be found. Extractor 'tap-github-org' may not have been installed yet using `meltano install extractor tap-github-org`, or the executable name may be incorrect
I build the docker image in the same way like on Gitlab (same Dockefile).
It works on Gitlab.
When I switch to related venv on my localhost and run which tap-github
, it does not find anything.
I was always wandering how this works.
What could be the reason that the tap/target executable cannot be found?jan_soubusta
01/05/2024, 11:13 AM.meltano
folder was not linked correctly to the folder from which I executed meltano (and where meltano.yaml file is).
Now Meltano finishes successfully in Github Actions, kudos! 🙂