mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
ITS#7870 ignore index DBs in slapcat
This commit is contained in:
parent
33e12f4de3
commit
a01d3f965b
@ -265,11 +265,16 @@ mdb_db_open( BackendDB *be, ConfigReply *cr )
|
||||
goto fail;
|
||||
}
|
||||
|
||||
/* slapcat doesn't need indexes. avoid a failure if
|
||||
* a configured index wasn't created yet.
|
||||
*/
|
||||
if ( !(slapMode & SLAP_TOOL_READONLY) ) {
|
||||
rc = mdb_attr_dbs_open( be, txn, cr );
|
||||
if ( rc ) {
|
||||
mdb_txn_abort( txn );
|
||||
goto fail;
|
||||
}
|
||||
}
|
||||
|
||||
rc = mdb_txn_commit(txn);
|
||||
if ( rc != 0 ) {
|
||||
|
Loading…
Reference in New Issue
Block a user