Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
#916 - add log output on the forced termination of the eosd process a…
Browse files Browse the repository at this point in the history
…nd set a non-zero exit code
  • Loading branch information
pmesnier committed Dec 11, 2017
1 parent e9547cc commit edf68ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ namespace eosio {
elog ("read_ind = ${r1}, ${r2} write_ind = ${w1}, ${w2}, buff.size = ${bs}, sanity = ${s}",
("r1",read_ind.first)("r2",read_ind.second)("w1",write_ind.first)("w2",write_ind.second)("bs",buffers.size())("s",sanity_check));
elog("Buffer manager overwrite detected. Terminating to allow external restart");
exit(0);
exit(1);
}
while (buffers.size() > 1) {
sanity_check--;
Expand Down

0 comments on commit edf68ff

Please sign in to comment.