We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Our Snowflake instance is located in eu-west-1; however, attempting to connect to that region with src_snowflakedb throws an error:
eu-west-1
src_snowflakedb
Invalid 'region_id'. See: https://docs.snowflake.net/manuals/user-guide/intro-editions.html#region-ids-in-account-urls
I think this is because the valid regions are out of date:
function (user = NULL, password = NULL, account = NULL, port = 443, host = NULL, opts = list(), region_id = "us-west", ...) { requireNamespace("RJDBC", quietly = TRUE) requireNamespace("dplyr", quietly = TRUE) valid_regions = c("us-east-1", "eu-central-1", "ap-southeast-2") # ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Our Snowflake instance is located in
eu-west-1
; however, attempting to connect to that region withsrc_snowflakedb
throws an error:I think this is because the valid regions are out of date:
The text was updated successfully, but these errors were encountered: