Skip to content

Commit

Permalink
Issue 6329 - lmdb typo in error log notice message
Browse files Browse the repository at this point in the history
Description: Typo in the NOTICE message generated when
a user sets the number of --mdb-max-readers

Fixes: 389ds#6329

Reviewed by:
  • Loading branch information
jchapma committed Sep 19, 2024
1 parent 82dcdab commit fe9633a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ldap/servers/slapd/back-ldbm/db-mdb/mdb_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,8 @@ dbmdb_ctx_t_db_max_readers_set(void *arg, void *value, char *errorbuf __attribut
if (apply) {
conf->dsecfg.max_readers = val;
if (CONFIG_PHASE_RUNNING == phase) {
slapi_log_err(SLAPI_LOG_NOTICE, "dbmdb_ctx_t_db_max_dbs_set",
"New nsslapd-mdb-max-dbs will not take affect until the server is restarted\n");
slapi_log_err(SLAPI_LOG_NOTICE, "dbmdb_ctx_t_db_max_readers_set",
"New nsslapd-mdb-max-readers will not take affect until the server is restarted\n");
}
}

Expand Down

0 comments on commit fe9633a

Please sign in to comment.