[Freeswitch-users] Small delay in registration validity

2009-12-17 Thread mayamatakeshi
It seems to me, in previous revisions of FS, we could successfully call a registered user as soon as his terminal gets 200 OK for REGISTER. But after testing recent revisions, it seems we must wait a little (I wait 1 second) otherwise a call to bridge would end with this: 2009-12-17

Re: [Freeswitch-users] Small delay in registration validity

2009-12-17 Thread Anthony Minessale
The sql is sorted into transactions to boost performance so it waits for either 500 statements to execute or 500ms to elapse to accumulate as many sql stmts as possible into the transaction. set sql-in-transactions to false in your profile or make a patch to make the 500ms configurable On

Re: [Freeswitch-users] Small delay in registration validity

2009-12-17 Thread mayamatakeshi
On Fri, Dec 18, 2009 at 1:12 AM, Anthony Minessale anthony.miness...@gmail.com wrote: The sql is sorted into transactions to boost performance so it waits for either 500 statements to execute or 500ms to elapse to accumulate as many sql stmts as possible into the transaction. set