How to limit the numberOfPartizipants of user's private room when they're 
created? Default is 25 & 150,Other rooms has yet set to 20 through UI,So i'm 
set a schedule in the DB
**********************************************************************
CREATE EVENT IF NOT EXISTS check_num
ON SCHEDULE EVERY 5 SECOND 
DO UPDATE room SET numberOfPartizipants=20 WHERE numberOfPartizipants>20 ;
**********************************************************************
But it's ineffective until restart. 


------------------ 原始邮件 ------------------
发件人: "Eric" <[email protected]>;
发送时间: 2016年8月12日(星期五) 21:28
收件人: "Openmeetings user-list" <[email protected]>;
主题: How to limit the numberOfPartizipants   of user's private room?



Hi,Maxim Solodovnik

How to restrict the numberOfPartizipants of user's private room when it's 
created? Default is 50。
I set a schedule for the table_room:
**********************************************************************
CREATE EVENT IF NOT EXISTS check_num
ON SCHEDULE EVERY 5 SECOND 
DO UPDATE room SET numberOfPartizipants=20 WHERE numberOfPartizipants>20 ;
**********************************************************************
But it's no effective util restart.

Reply via email to