Bradley Grainger

Results 478 comments of Bradley Grainger

I don't mean to be dismissive, but if you need to know its effect, you should test `Pipelining = true` vs `false` in your specific environment and see if you...

Does the problem only happen when using the "ECC384" certs, not "RSA2048", or is that irrelevant to this issue? Are you requesting that MySqlConnector set `X509Chain.ChainPolicy.RevocationMode` to `X509RevocationMode.NoCheck` (or `.Offline`)...

Correct: `RemoteCertificateChainErrors` is only cleared if `UntrustedRoot` is the _only_ error, and if we can manually clear that ourselves by verifying the root. Or are you saying that when that...

> This is a regression from .NET Framework 4.7.2 I had to update the sample app slightly to work correctly under .NET 4.7.2 (but the primary point still stands). The...

The FlowDocument is a simplification for this repro; it's not used by the application where this problem was first discovered (which uses a custom DocumentPaginator and draws directly to a...

The exception is coming from `OpenInUpdateMode`. This seemed odd to me, because we should just be "reading" the document to print it, not updating it. `ZipPackage` sets the `ZipArchiveMode` to...

Looks like a duplicate of this question: https://stackoverflow.com/q/72602061/23633 Based on https://stackoverflow.com/a/76564520/23633 and https://github.com/dotnet/sdk/issues/21942#issuecomment-603193785, it's probably caused by references to old NuGet packages.

Does adding `Allow Zero Date Time=true;` to your connection string help? https://mysqlconnector.net/connection-options/#AllowZeroDateTime

It might not help if ADF is expecting `DateTime` values to be returned, because `Allow Zero Date Time` will make MySqlConnector start returning `MySqlDateTime` objects instead. But if ADF needs...

@Jatkingmodern If you'd like to work on this issue, please first write up an implementation plan (with details of the span-related changes to be implemented) for review and approval before...