Commit 5848eda6 authored by ufownl's avatar ufownl

Disable the invalid error report

[ERROR] CAF_PUSH_AID called in file
/home/ubuntu/Softwares/actor-framework/libcaf_core/src/local_actor.cpp
on line 726 without thread-local logger pointer
parent ed4e4418
...@@ -679,6 +679,7 @@ void local_actor::launch(execution_unit* eu, bool lazy, bool hide) { ...@@ -679,6 +679,7 @@ void local_actor::launch(execution_unit* eu, bool lazy, bool hide) {
auto this_ptr = ptr->get(); auto this_ptr = ptr->get();
CAF_ASSERT(dynamic_cast<blocking_actor*>(this_ptr) != 0); CAF_ASSERT(dynamic_cast<blocking_actor*>(this_ptr) != 0);
auto self = static_cast<blocking_actor*>(this_ptr); auto self = static_cast<blocking_actor*>(this_ptr);
CAF_SET_LOGGER_SYS(&self->system());
error rsn; error rsn;
std::exception_ptr eptr = nullptr; std::exception_ptr eptr = nullptr;
try { try {
......
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