[389-commits] Branch '389-ds-base-1.3.1' - ldap/servers

Mark Reynolds mreynolds at fedoraproject.org
Wed May 6 20:32:26 UTC 2015


 ldap/servers/plugins/replication/repl5.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0206e01b523417e4c7315bec8b967497f130c2af
Author: Mark Reynolds <mreynolds at redhat.com>
Date:   Wed May 6 15:08:22 2015 -0400

    Ticket 48158 - Remove cleanAllRUV task limit of 4
    
    Bug Description:  There is a limit of 4 concurrent tasks, and this is too
                      low of a limit.
    
    Fix Description:  There still needs to be a limit because each task creates
                      a new thread.  Setting limit to 64.
    
    https://fedorahosted.org/389/ticket/48158
    
    Reviewed by: rmeggins(Thanks!)
    
    (cherry picked from commit cd8614a75852f4d05dc76d104867542f18384416)

diff --git a/ldap/servers/plugins/replication/repl5.h b/ldap/servers/plugins/replication/repl5.h
index 0c3abd9..7d85631 100644
--- a/ldap/servers/plugins/replication/repl5.h
+++ b/ldap/servers/plugins/replication/repl5.h
@@ -674,7 +674,7 @@ void set_cleaned_rid(ReplicaId rid);
 void cleanruv_log(Slapi_Task *task, int rid, char *task_type, char *fmt, ...);
 char * replica_cleanallruv_get_local_maxcsn(ReplicaId rid, char *base_dn);
 
-#define CLEANRIDSIZ 4 /* maximum number for concurrent CLEANALLRUV tasks */
+#define CLEANRIDSIZ 64 /* maximum number for concurrent CLEANALLRUV tasks */
 
 typedef struct _cleanruv_data
 {




More information about the 389-commits mailing list