Bumped package version to 1.0.7 and fixed a bug with the retry logic for ExecuteReader.
This commit is contained in:
parent
0348b26aec
commit
b6a47ce023
@ -195,19 +195,23 @@ namespace MontoyaTech.MySqlPlus
|
|||||||
ex.Message.ToLower().Contains("a connection attempt failed because the connected party did not properly respond after a period of time") ||
|
ex.Message.ToLower().Contains("a connection attempt failed because the connected party did not properly respond after a period of time") ||
|
||||||
ex.Message.ToLower().Contains("an existing connection was forcibly closed by the remote host"))
|
ex.Message.ToLower().Contains("an existing connection was forcibly closed by the remote host"))
|
||||||
{
|
{
|
||||||
//Attempt to reopen the connection.
|
//Attempt to reconnect, but if this fails, it means we can't try any more since the reconnect retrys more than once.
|
||||||
this.Reconnect(maxRetrys, exponentialBackoff);
|
if (!this.Reconnect(maxRetrys, exponentialBackoff))
|
||||||
|
throw;
|
||||||
}
|
}
|
||||||
|
|
||||||
//See if we should retry or just throw.
|
//See if we should retry or just throw.
|
||||||
if (!ShouldRetryBasedOnMySqlErrorNum(code))
|
else if (!ShouldRetryBasedOnMySqlErrorNum(code))
|
||||||
throw;
|
|
||||||
|
|
||||||
//If the operation took less than 5 seconds, then sleep. Otherwise continue right away. This is to prevent OpenRetry from making us wait even longer.
|
|
||||||
if (GlobalTimeStamp.GetDifference(startTimestamp) <= 5000 && exponentialBackoff)
|
|
||||||
{
|
{
|
||||||
Thread.Sleep(backoffSleep);
|
throw;
|
||||||
backoffSleep *= 2;
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//If the operation took less than 5 seconds, then sleep. Otherwise continue right away. This is to prevent OpenRetry from making us wait even longer.
|
||||||
|
if (GlobalTimeStamp.GetDifference(startTimestamp) <= 5000 && exponentialBackoff)
|
||||||
|
{
|
||||||
|
Thread.Sleep(backoffSleep);
|
||||||
|
backoffSleep *= 2;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<AssemblyName>MontoyaTech.MySqlPlus</AssemblyName>
|
<AssemblyName>MontoyaTech.MySqlPlus</AssemblyName>
|
||||||
<RootNamespace>MontoyaTech.MySqlPlus</RootNamespace>
|
<RootNamespace>MontoyaTech.MySqlPlus</RootNamespace>
|
||||||
<Title>MontoyaTech.MySqlPlus</Title>
|
<Title>MontoyaTech.MySqlPlus</Title>
|
||||||
<Version>1.0.6</Version>
|
<Version>1.0.7</Version>
|
||||||
<Company>MontoyaTech</Company>
|
<Company>MontoyaTech</Company>
|
||||||
<Description>A simple C# library to help work with MySql.</Description>
|
<Description>A simple C# library to help work with MySql.</Description>
|
||||||
<Copyright>MontoyaTech 2023</Copyright>
|
<Copyright>MontoyaTech 2023</Copyright>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user