oazabir / aspectf

Automatically exported from code.google.com/p/aspectf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Failhandler not executed in Retry(Action<IEnumerable<Exception>>, ILogger)

GoogleCodeExporter opened this issue · comments

Line 143 in AspectF.cs reads:
Retry(1000, 1, (error) => DoNothing(error), x => DoNothing(), work, logger));

It must be like this:
Retry(1000, 1, (error) => DoNothing(error), failHandler, work, logger));

Original issue reported on code.google.com by sorenhan...@gmail.com on 30 Mar 2010 at 2:06