From: Anthony Minessale II Date: Wed, 30 Mar 2005 22:09:01 +0000 (+0000) Subject: increase queue length of chanspy queue X-Git-Tag: 1.2.0-beta1~963 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c7fef7ece9912de474cddf6573e3b469c6f7edb;p=thirdparty%2Fasterisk.git increase queue length of chanspy queue git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5310 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channel.c b/channel.c index 8394b80a82..44c12b8e18 100755 --- a/channel.c +++ b/channel.c @@ -731,7 +731,7 @@ static void ast_queue_spy_frame(struct ast_channel_spy *spy, struct ast_frame *f for (tmpf=spy->queue[pos]; tmpf && tmpf->next; tmpf=tmpf->next) { count++; } - if (count > 100) { + if (count > 1000) { struct ast_frame *freef, *headf; ast_log(LOG_ERROR, "Too Many frames queued at once, flushing cache.\n");