Procházet zdrojové kódy

Add try catch on Dispatcher.Processing when invoke subscriber (#900)

* Fix Dashboard metric not update #811

* Add try catch on Dispatcher.Processing when invoke subscriber
master
luox78 před 3 roky
committed by GitHub
rodič
revize
1bc1595a97
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 9 přidání a 1 odebrání
  1. +9
    -1
      src/DotNetCore.CAP/Processor/IDispatcher.Default.cs

+ 9
- 1
src/DotNetCore.CAP/Processor/IDispatcher.Default.cs Zobrazit soubor

@@ -98,7 +98,15 @@ namespace DotNetCore.CAP.Processor
{
while (_receivedChannel.Reader.TryRead(out var message))
{
await _executor.DispatchAsync(message.Item1, message.Item2, _cts.Token);
try
{
await _executor.DispatchAsync(message.Item1, message.Item2, _cts.Token);
}
catch (Exception e)
{
_logger.LogError(e,
$"An exception occurred when invoke subscriber. MessageId:{message.Item1.DbId}");
}
}
}
}


Načítá se…
Zrušit
Uložit