aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authorbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-11 17:49:35 +0000
committerbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-11 17:49:35 +0000
commit2763c6a1a7ae11a292fcb73d4d247d45454b5765 (patch)
tree6b868afdd91cf8a26b8601dae136e7370dd75e7e /apps/app_queue.c
parentc9d4b54d8f00072b097d223ed25b2f37d9c2ead4 (diff)
Increase the size of the variable space for writing/reading persistent queue member data to allow for larger queues of members. (Matthew Roth #7703)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@39516 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_queue.c')
-rw-r--r--apps/app_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 774c8ca17..3e2f15340 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -237,7 +237,7 @@ static char *app_ql_descrip =
/*! \brief Persistent Members astdb family */
static const char *pm_family = "/Queue/PersistentMembers";
/* The maximum length of each persistent member queue database entry */
-#define PM_MAX_LEN 2048
+#define PM_MAX_LEN 8192
/*! \brief queues.conf [general] option */
static int queue_persistent_members = 0;