summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorAnthony Minessale II <anthmct@yahoo.com>2005-03-30 22:09:01 +0000
committerAnthony Minessale II <anthmct@yahoo.com>2005-03-30 22:09:01 +0000
commit1c7fef7ece9912de474cddf6573e3b469c6f7edb (patch)
tree11e3c6d9a70422a415edb6b3608cc2bb4b2f9561 /channel.c
parentcb80b98c7dcb66ee53723df6701bc312ac8dcf97 (diff)
increase queue length of chanspy queue
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5310 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 8394b80a8..44c12b8e1 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");