-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Catalog discovery failing when using browser authentication #48
Comments
It seems that the issue was already reported here. |
Also cross-posted this issue here. |
Hey @edgarrmondragon , I don't see much traction on the related issue on the Snowflake side as it seems they have their reasons to use a Do you think we could implement some type of (maybe a bit dirty) workaround here in the |
If we know the point at which the call chain starts on our end, we could try using |
While using the
tap-snowflake
withuse_browser_authentication=True
, my catalog discovery fails withRun invocation could not be completed as block failed: Cannot start plugin tap-snowflake: Catalog discovery failed: invalid catalog: Expecting value: line 1 column 1 (char 0)
. A bit of a cryptic error.After investigating a bit further with
meltano invoke tap-snowflake --discover > catalog.json
, I noticed that the Snowflake connector sends the browser authentication logs tostdout
, so the first line in my catalog is:After looking a bit deeper into the
snowflake-connector-python
, it seems that they useprint()
for this message here, which causes the issue.The text was updated successfully, but these errors were encountered: