From a20a7e080d7d20db226835dc3b1b406570ae2e13 Mon Sep 17 00:00:00 2001 From: didayolo Date: Wed, 5 Aug 2026 15:10:44 +0200 Subject: [PATCH] Increase queue limit to 10 --- src/apps/profiles/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/profiles/models.py b/src/apps/profiles/models.py index dee26644d..409294511 100644 --- a/src/apps/profiles/models.py +++ b/src/apps/profiles/models.py @@ -93,7 +93,7 @@ class User(AbstractBaseUser, PermissionsMixin): allow_organization_invite_emails = models.BooleanField(default=True) # Queues - rabbitmq_queue_limit = models.PositiveIntegerField(default=5, blank=True) + rabbitmq_queue_limit = models.PositiveIntegerField(default=10, blank=True) rabbitmq_username = models.CharField(max_length=36, null=True, blank=True) rabbitmq_password = models.CharField(max_length=36, null=True, blank=True)