Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv3800
Modified Files:
RetryAdvice.cs
Log Message:
Fix for SPRNET-893 - Retry advice goes into infinite loop when exception type not listed in advice is thrown
Index: RetryAdvice.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/RetryAdvice.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** RetryAdvice.cs 29 Jan 2008 18:27:37 -0000 1.4
--- RetryAdvice.cs 17 Mar 2008 20:25:34 -0000 1.5
***************
*** 156,159 ****
--- 156,163 ----
}
}
+ else
+ {
+ throw;
+ }
}
} while (numAttempts <= retryExceptionHandler.MaximumRetryCount);
|