Skip to content
Snippets Groups Projects
Commit 4dc48d3a authored by KyleKlenk's avatar KyleKlenk
Browse files

Cleaned up Job actor error handling

parent 644b82dc
No related branches found
No related tags found
1 merge request!5add in compiler def ACTORS_ACTIVE to turn on some stuff so can move...
......@@ -243,7 +243,10 @@ behavior job_actor(stateful_actor<job_state>* self,
break;
case type_id_v<file_access_error>:
aout(self) << "File Access Error: " << to_string(err) << "No Hanlding Implemented\n";
aout(self) << "File Access Error: " << to_string(err) << "No Handling Implemented\n";
for (auto GRU : self->state.gru_container.gru_list) {
self->send_exit(GRU->getGRUActor(), exit_reason::user_shutdown);
}
self->quit();
break;
default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment