Skip to content

Commit

Permalink
specify the auth type
Browse files Browse the repository at this point in the history
  • Loading branch information
ruowan committed Dec 1, 2023
1 parent 61f84a4 commit 530eaab
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions csharp/test/Drivers/Snowflake/ClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ private Adbc.Client.AdbcConnection GetSnowflakeAdbcConnectionUsingConnectionStri
else if (string.IsNullOrEmpty(authType) || authType == SnowflakeAuthentication.AuthSnowflake)
{
// if no auth type is specified, use the snowflake auth
builder[SnowflakeParameters.AUTH_TYPE] = SnowflakeAuthentication.AuthSnowflake;
builder[SnowflakeParameters.USERNAME] = testConfiguration.Authentication.Default.User;
builder[SnowflakeParameters.PASSWORD] = testConfiguration.Authentication.Default.Password;
}
Expand Down

0 comments on commit 530eaab

Please sign in to comment.