Final catch for the IPC loop.

master
Karchnu 2020-08-26 16:50:14 +02:00
parent 6a5496a393
commit 185a87431c
1 changed files with 44 additions and 40 deletions

View File

@ -382,6 +382,7 @@ end
Context.service.base_timer = Context.timer_delay
Context.service.loop do |event|
begin
case event
when IPC::Event::Timer
Log.info "IPC::Event::Timer"
@ -428,4 +429,7 @@ Context.service.loop do |event|
Log.debug "IPC::Event::MessageReceived: #{event.fd}"
raise "Not implemented."
end
rescue e
Log.error "IPC loop final catch: #{e}"
end
end