# HG changeset patch # User bsw # Date 1535283628 -7200 # Node ID cd497eb8fd73b71922a60ac0148f3db08b2b243a # Parent 3dbfac432576845ae452e0cadb44c79da850b039 Added forced sleep at end of notification loops diff -r 3dbfac432576 -r cd497eb8fd73 app/main/_prefork/10_init.lua --- a/app/main/_prefork/10_init.lua Sun Aug 26 13:38:14 2018 +0200 +++ b/app/main/_prefork/10_init.lua Sun Aug 26 13:40:28 2018 +0200 @@ -214,11 +214,13 @@ if not Newsletter:send_next_newsletter() then break end + moonbridge_io.poll(nil, nil, 1) end while true do if not InitiativeForNotification:notify_next_member() then break end + moonbridge_io.poll(nil, nil, 1) end end },