Have an issue similar to what's described here: <h...
# troubleshooting
l
Have an issue similar to what's described here: https://github.com/meltano/meltano/discussions/7142 i have a pipeline using tap-hubspot airbyte variant working perfectly on my local machine, but when i try to deploy it and run on github actions, discover fails with "permission denied to /tmp/config.json" cannot find a solution so far i tried: 1. overriding TMPDIR or similar env variables - did not affect the discover trying to access /tmp/config.json 2. adding a docker_mount configration to airbyte tap - "docker: Error response from daemon: Duplicate mount point: /tmp." other ideas ?
v
Could swap the wrapper code yourself https://github.com/MeltanoLabs/tap-airbyte-wrapper/blob/main/tap_airbyte/tap.py#L526C1-L528C77 May be some tricky ways to symlink this or something but 🤷 With GH Actions if I got stuck I'd launch a docker container inside of GH Actions that's setup the way I want it to be (with access to /tmp)
l
if it helps anyone in the future ... i found that airbyte_wrapper tap has a "hidden" config option (found it in the code but none of the docs)
Copy code
force_native: True
Added this in my meltano.yml and it works
❤️ 1
v
thank you for sharing!