mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-21 07:09:34 -05:00
ITS#10270 slapo-pcache: negative cache entries are not loaded when pcachePersist is on
This commit is contained in:
parent
24d4dcb3d7
commit
f00319b32c
1 changed files with 5 additions and 1 deletions
|
|
@ -802,7 +802,11 @@ url2query(
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (BER_BVISNULL( &uuid )) {
|
||||||
|
cq = add_query( op, qm, &query, qt, PC_NEGATIVE, 0 );
|
||||||
|
} else {
|
||||||
cq = add_query( op, qm, &query, qt, PC_POSITIVE, 0 );
|
cq = add_query( op, qm, &query, qt, PC_POSITIVE, 0 );
|
||||||
|
}
|
||||||
if ( cq != NULL ) {
|
if ( cq != NULL ) {
|
||||||
cq->expiry_time = expiry_time;
|
cq->expiry_time = expiry_time;
|
||||||
cq->refresh_time = refresh_time;
|
cq->refresh_time = refresh_time;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue