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,14 +195,17 @@ 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);
|
||||
}
|
||||
|
||||
//See if we should retry or just throw.
|
||||
if (!ShouldRetryBasedOnMySqlErrorNum(code))
|
||||
//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.
|
||||
else if (!ShouldRetryBasedOnMySqlErrorNum(code))
|
||||
{
|
||||
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)
|
||||
{
|
||||
@ -211,6 +214,7 @@ namespace MontoyaTech.MySqlPlus
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
throw new Exception($"MySql ExecuteReader failed. Max timeout reached. Query: {command.CommandText}");
|
||||
}
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user