Commit 08bc1fb6 authored by Nick Craver's avatar Nick Craver Committed by Nick Craver

Set the field instead of the property

Since logic exists in the getter, we need to set the field across for actual quality.  The `Issue883_Exhaustive` test illustrates the difference in the comparison (currently failing).
parent fdcd36ca
......@@ -462,7 +462,7 @@ public ConfigurationOptions Clone()
DefaultDatabase = DefaultDatabase,
ReconnectRetryPolicy = reconnectRetryPolicy,
SslProtocols = SslProtocols,
CheckCertificateRevocation = CheckCertificateRevocation
checkCertificateRevocation = checkCertificateRevocation,
};
foreach (var item in EndPoints)
options.EndPoints.Add(item);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment