1
0
mirror of synced 2024-11-05 02:59:16 +00:00

RDB-136 Flow tabel wordt niet meer opgeruimd Bij een exceptie in Flow

Refactoring om de actie van de Exceptionstrategie door te geven aan de cleanup stack
Deel 2 Megre bug geresolved
This commit is contained in:
Menno van Lavieren 2017-10-17 13:46:06 +02:00
parent be7637e784
commit 9b0984ec5a

View File

@ -10,11 +10,13 @@ namespace Tapeti.Flow.Default
public class FlowStarter : IFlowStarter public class FlowStarter : IFlowStarter
{ {
private readonly IConfig config; private readonly IConfig config;
private readonly ILogger logger;
public FlowStarter(IConfig config) public FlowStarter(IConfig config, ILogger logger)
{ {
this.config = config; this.config = config;
this.logger = logger;
} }