diff --git a/MySqlPlus/MySqlManagedConnection.cs b/MySqlPlus/MySqlManagedConnection.cs
index bc07b40..04039f6 100644
--- a/MySqlPlus/MySqlManagedConnection.cs
+++ b/MySqlPlus/MySqlManagedConnection.cs
@@ -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;
+ }
}
}
}
diff --git a/MySqlPlus/MySqlPlus.csproj b/MySqlPlus/MySqlPlus.csproj
index e7a4a43..a8893a9 100644
--- a/MySqlPlus/MySqlPlus.csproj
+++ b/MySqlPlus/MySqlPlus.csproj
@@ -7,7 +7,7 @@