Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/Adaptive.Cluster/Service/ClusteredServiceAgent.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Runtime.ExceptionServices;
using System.Threading;
using Adaptive.Aeron;
using Adaptive.Aeron.Exceptions;
Expand Down Expand Up @@ -979,7 +980,7 @@ private void ExecuteAction(ClusterAction action, long logPosition, long leadersh

if (null != exception)
{
throw exception;
ExceptionDispatchInfo.Capture(exception).Throw();
}
}
}
Expand Down
Loading