Hello everyone! I modified tap-jira --<variant-si...
# singer-tap-development
r
Hello everyone! I modified tap-jira --variant-singer.io abit. I made it locally runnable (gave pip_url as -e /<local_path_to_tap>, copy pasted the tap-setting from meltano_hubs .yaml file to meltano.yaml and installed it locally). It runs, but the encoding from stdout isn't utf-8 for some reason. Any ideas what i have to do fix the encoding? Appreciate all the help!
e
Hi @rasmus_bobkov! Well, the first step would be to identify what part of the tap's output isn't utf-8. You can send the output to a file and inspect the lines to see if there's anything suspicious:
Copy code
meltano invoke tap-jira > out.jsonl
r
Heya @edgar_ramirez_mondragon! The entire output is not in utf-8 (i'm missing all the Estonian letters i need, like ö,ä,ö,ü ) {"type": "RECORD", "stream": "fields", "record": {"id": "customfield_18536", "name": "Tehnilise teenuse t\u00fc\u00fcp"}, "time_extracted": "2023-10-31T072438.096611Z"} similarly for all other mentioned characters
I also tested the tap-jira built with meltanoSDK, this one is meant for jira cloud API (https://github.com/MeltanoLabs/tap-jira). routed it against jira on prem API and again same thing...no utf-8. it works fine when i install it via "meltano add extractor <plugin_name>
i'm actually mistaken, i have the same problem also when i install it via "meltano add extractor <plugin_name>" I didn't have this issue before, strange