Commit 8d5b9909 authored by Dominik Charousset's avatar Dominik Charousset

Fix rendering of exit_reason

parent a35d1109
......@@ -325,7 +325,7 @@ std::string actor_system_config::render_sec(uint8_t x, atom_value,
std::string actor_system_config::render_exit_reason(uint8_t x, atom_value,
const message& xs) {
auto tmp = static_cast<sec>(x);
auto tmp = static_cast<exit_reason>(x);
return deep_to_string(meta::type_name("exit_reason"), tmp,
meta::omittable_if_empty(), xs);
}
......
......@@ -28,7 +28,6 @@ namespace {
const char* exit_reason_strings[] = {
"normal",
"unhandled_exception",
"unhandled_request_error",
"unknown",
"out_of_workers",
"user_shutdown",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment