Bumped package version to 1.0.7 and fixed a bug with the retry logic for ExecuteReader.

This commit is contained in:
MattMo 2023-02-01 09:52:09 -08:00
parent 0348b26aec
commit b6a47ce023
2 changed files with 15 additions and 11 deletions

View File

@ -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("an existing connection was forcibly closed by the remote host"))
{
//Attempt to reopen the connection.
this.Reconnect(maxRetrys, exponentialBackoff);
//Attempt to reconnect, but if this fails, it means we can't try any more since the reconnect retrys more than once.
if (!this.Reconnect(maxRetrys, exponentialBackoff))
throw;
}
//See if we should retry or just throw.
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)
else if (!ShouldRetryBasedOnMySqlErrorNum(code))
{
Thread.Sleep(backoffSleep);
backoffSleep *= 2;
throw;
}
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;
}
}
}
}

View File

@ -7,7 +7,7 @@
<AssemblyName>MontoyaTech.MySqlPlus</AssemblyName>
<RootNamespace>MontoyaTech.MySqlPlus</RootNamespace>
<Title>MontoyaTech.MySqlPlus</Title>
<Version>1.0.6</Version>
<Version>1.0.7</Version>
<Company>MontoyaTech</Company>
<Description>A simple C# library to help work with MySql.</Description>
<Copyright>MontoyaTech 2023</Copyright>