Skip to content
Snippets Groups Projects
Commit b2b3f23a authored by Howard Chu's avatar Howard Chu Committed by Quanah Gibson-Mount
Browse files

ITS#7426 ignore syncrepl ops

parent 8f66d7db
No related branches found
No related tags found
No related merge requests found
......@@ -771,7 +771,7 @@ constraint_add( Operation *op, SlapReply *rs )
int rc;
char *msg = NULL;
if (get_relax(op)) {
if (get_relax(op) || SLAPD_SYNC_IS_SYNCCONN( op->o_connid )) {
return SLAP_CB_CONTINUE;
}
......@@ -903,7 +903,7 @@ constraint_update( Operation *op, SlapReply *rs )
char *msg = NULL;
int is_v;
if (get_relax(op)) {
if (get_relax(op) || SLAPD_SYNC_IS_SYNCCONN( op->o_connid )) {
return SLAP_CB_CONTINUE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment