]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Increase the retry count when attempting to show channels. This apparently
authorMark Michelson <mmichelson@digium.com>
Mon, 14 Apr 2008 17:41:03 +0000 (17:41 +0000)
committerMark Michelson <mmichelson@digium.com>
Mon, 14 Apr 2008 17:41:03 +0000 (17:41 +0000)
cleared an issue someone was seeing when attempting to show channels when
the load was high.

(closes issue #11667)
Reported by: falves11
Patches:
      11677.txt uploaded by russell (license 2)
Tested by: falves11

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@114117 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/channel.c

index ff8277746b78ea3ee09789e8ef3259787284f9cd..91dd940c7cc0c1c6ac5376b45d260fffbcd9f1bb 100644 (file)
@@ -1024,7 +1024,7 @@ static struct ast_channel *channel_find_locked(const struct ast_channel *prev,
        struct ast_channel *c;
        const struct ast_channel *_prev = prev;
 
-       for (retries = 0; retries < 10; retries++) {
+       for (retries = 0; retries < 200; retries++) {
                int done;
                AST_LIST_LOCK(&channels);
                AST_LIST_TRAVERSE(&channels, c, chan_list) {
@@ -1066,7 +1066,7 @@ static struct ast_channel *channel_find_locked(const struct ast_channel *prev,
                if (!done) {
                        if (option_debug)
                                ast_log(LOG_DEBUG, "Avoiding %s for channel '%p'\n", msg, c);
-                       if (retries == 9) {
+                       if (retries == 199) {
                                /* We are about to fail due to a deadlock, so report this
                                 * while we still have the list lock.
                                 */