1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00

cleanup CommandId from MappedDiagnosticsContext

This commit is contained in:
kay.one 2013-09-13 23:20:10 -07:00
parent 87da82dd90
commit 909439f615

View File

@ -166,6 +166,13 @@ private void ExecuteCommand<TCommand>(Command command) where TCommand : Command
PublishEvent(new CommandUpdatedEvent(command));
throw;
}
finally
{
if (MappedDiagnosticsContext.Get("CommandId") == command.Id.ToString())
{
MappedDiagnosticsContext.Remove("CommandId");
}
}
PublishEvent(new CommandExecutedEvent(command));
PublishEvent(new CommandUpdatedEvent(command));