ldap/servers/plugins/replication/repl5_replica.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
New commits: commit 9fd4e09ce45822507993fcb9a35f77327a4a1fc9 Author: Rich Megginson rmeggins@redhat.com Date: Wed Feb 1 14:01:52 2012 -0700
Ticket #13 - slapd process exits when put the database on read only mode while updates are coming to the server
https://fedorahosted.org/389/ticket/13 Resolves: Ticket #13 Bug Description: slapd process exits when put the database on read only mode while updates are coming to the server Reviewed by: mreynolds (Thanks!) Branch: master Fix Description: Make the log level REPL instead of FATAL - get rid of the assert Platforms tested: RHEL6 x86_64 Flag Day: no Doc impact: no
diff --git a/ldap/servers/plugins/replication/repl5_replica.c b/ldap/servers/plugins/replication/repl5_replica.c index 8c7a2ab..db8d5be 100644 --- a/ldap/servers/plugins/replication/repl5_replica.c +++ b/ldap/servers/plugins/replication/repl5_replica.c @@ -2361,11 +2361,10 @@ replica_write_ruv (Replica *r) { char ebuf[BUFSIZ]; - slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, + slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, "replica_write_ruv: failed to update RUV tombstone for %s; " "LDAP error - %d\n", escape_string(slapi_sdn_get_dn(r->repl_root),ebuf), rc); - PR_ASSERT (0); }
PR_Unlock(r->repl_lock);
389-commits@lists.fedoraproject.org