liquid_feedback_frontend
changeset 1414:cd497eb8fd73
Added forced sleep at end of notification loops
author | bsw |
---|---|
date | Sun Aug 26 13:40:28 2018 +0200 (2018-08-26) |
parents | 3dbfac432576 |
children | 16695c98de23 |
files | app/main/_prefork/10_init.lua |
line diff
1.1 --- a/app/main/_prefork/10_init.lua Sun Aug 26 13:38:14 2018 +0200 1.2 +++ b/app/main/_prefork/10_init.lua Sun Aug 26 13:40:28 2018 +0200 1.3 @@ -214,11 +214,13 @@ 1.4 if not Newsletter:send_next_newsletter() then 1.5 break 1.6 end 1.7 + moonbridge_io.poll(nil, nil, 1) 1.8 end 1.9 while true do 1.10 if not InitiativeForNotification:notify_next_member() then 1.11 break 1.12 end 1.13 + moonbridge_io.poll(nil, nil, 1) 1.14 end 1.15 end 1.16 },