eBay / NuRaft

C++ implementation of Raft core logic as a replication library
Apache License 2.0
1.02k stars 240 forks source link

Add result code to response messages #515

Closed amichon-kalray closed 5 months ago

amichon-kalray commented 5 months ago

In some cases, the response is marked as accepted even if there was an error. Therefore, including the accepted tag in the response message is not enough: a follower may believe that an auto forwarded request was successful when it wasn't.

Resolves #513