-
-
Notifications
You must be signed in to change notification settings - Fork 448
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
Update from System.Data.SqlClient to Microsoft.Data.SqlClient in v1.x #1024
Conversation
I see I need to disable cert validation on SQL connection in tests... Work ongoing... ... Done |
@@ -50,7 +50,8 @@ public static MsSqlConnectionString CreateConnectionString(string label) | |||
{ | |||
DataSource = FirstNonEmpty( | |||
Environment.GetEnvironmentVariable("EVENTFLOW_MSSQL_SERVER"), | |||
".") | |||
"."), | |||
Encrypt = false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trust Server Cert wasn't working (I assume with SQL Server 2017), so I just disabled encryption. It's not required for tests.
@janrybka there seems to be something odd with the CLA. Are your commits done using an email verified on GitHub? |
Yes, I used the wrong one on this repo. Fixed. |
❤️ |
Details in of update in discussion: #1022 (comment)
This is first PR. The second will be to
develop-v0
. Unfortunately I don't have any sample project to run tests on. Changes looks straight forward, build and unit tests passes, so there shouldn't be problems with runtime library mismatches.I'm currently running test on v0 version. I'll post those once finished.