Open ZmeiGorynych opened 4 weeks ago
@ZmeiGorynych - Thanks for raising. I've opened a PR here:
Does this look correct, and can you confirm that this fixes the issue on your side?
PyAirbyte itself has run into this issue, and we have Windows tests in place now to confirm it doesn't reapear. However, the connectors and the CDK are only tested on Linux. Windows compat is admittedly a lower priority on the connector and CDK-side, but this one seems like an easy enough fix that I'd like to see it through.
As a workaround, if you have a docker runtime locally, you could use docker_image=True
in get_source()
as a workaround, but either way, I do think this is a worthwhile fix to implement.
Yes, that's perfect, thanks!
I'll reopen so we can keep the conversation/tracking going if needed.
(This issue should still auto-close when that merges.)
By the way, docker_image=True
breaks on Windows as well :)
When running the below code on Windows, I get the following error:
Full console output here: slack-connector-console-output.txt
This can be fixed by changing line 120 in
entrypoint.py
toI ran into the same error with other projects, seems to be an
shutil
issue on Windows.Shall I submit a PR for that?
Here's the code to reproduce