-
Notifications
You must be signed in to change notification settings - Fork 150
Description
Please answer these questions before submitting your issue.
In order to accurately debug the issue this information is required. Thanks!
-
What version of .NET driver are you using?
4.8.0 -
What operating system and processor architecture are you using?
Windows 64 bit -
What version of .NET framework are you using?
E.g. .net 8.0 -
What did you do?
_connection = dbRetryPolicy.Execute(() =>
{
var connect = new SnowflakeDbConnection();
connect.ConnectionString = connectionString;
return connect;
});
_connection.Open();
-
What did you expect to see?
I am getting following error
Snowflake.Data.Client.SnowflakeDbException (0x80004005): Error: Required property PASSWORD is not provided. SqlState: , VendorCode: 270006, QueryId:
at Snowflake.Data.Core.SFSessionProperties.CheckRequiredProperty(SFSessionProperty sessionProperty, SFSessionProperties properties)
at Snowflake.Data.Core.SFSessionProperties.CheckSessionProperties(SFSessionProperties properties)
at Snowflake.Data.Core.SFSessionProperties.ParseConnectionString(String connectionString, SessionPropertiesContext propertiesContext)
at Snowflake.Data.Core.Session.SessionPool.GetSession(String connStr, SessionPropertiesContext sessionContext)
at Snowflake.Data.Client.SnowflakeDbConnection.Open()
Its not consistent and happens intermittently, my initial thought was maybe i did wrong configuration for connection string but it works most of the time but randomly its throwing that exception.
- Can you set logging to DEBUG and collect the logs?
I can try but its difficult, we host on azure web app instance and not on VM