Skip to content

Commit

Permalink
[C++] Rethrow original exception in ReplayMerge so information is not…
Browse files Browse the repository at this point in the history
… lost. #1587
  • Loading branch information
mikeb01 committed May 23, 2024
1 parent 4095257 commit e8d1b59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aeron-archive/src/main/cpp/client/ReplayMerge.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class ReplayMerge
catch (std::exception &ex)
{
state(State::FAILED);
throw ex;
throw;
}

return workCount;
Expand Down

0 comments on commit e8d1b59

Please sign in to comment.