mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-10 17:03:09 -05:00
ITS#9059 Skip mincsn check if sessionlog replay was successful
This commit is contained in:
parent
9183abe62c
commit
709d805f84
1 changed files with 4 additions and 3 deletions
|
|
@ -2883,7 +2883,9 @@ no_change: if ( !(op->o_sync_mode & SLAP_SYNC_PERSIST) ) {
|
|||
}
|
||||
}
|
||||
/* Is the CSN still present in the database? */
|
||||
if ( syncprov_findcsn( op, FIND_CSN, &mincsn ) != LDAP_SUCCESS ) {
|
||||
if ( !do_present ) {
|
||||
gotstate = 1;
|
||||
} else if ( syncprov_findcsn( op, FIND_CSN, &mincsn ) != LDAP_SUCCESS ) {
|
||||
/* No, so a reload is required */
|
||||
/* the 2.2 consumer doesn't send this hint */
|
||||
if ( si->si_usehint && srs->sr_rhint == 0 ) {
|
||||
|
|
@ -2910,8 +2912,7 @@ no_change: if ( !(op->o_sync_mode & SLAP_SYNC_PERSIST) ) {
|
|||
} else {
|
||||
gotstate = 1;
|
||||
/* If changed and doing Present lookup, send Present UUIDs */
|
||||
if ( do_present && syncprov_findcsn( op, FIND_PRESENT, 0 ) !=
|
||||
LDAP_SUCCESS ) {
|
||||
if ( syncprov_findcsn( op, FIND_PRESENT, 0 ) != LDAP_SUCCESS ) {
|
||||
if ( ctxcsn )
|
||||
ber_bvarray_free_x( ctxcsn, op->o_tmpmemctx );
|
||||
if ( sids )
|
||||
|
|
|
|||
Loading…
Reference in a new issue