mirror of
https://github.com/redis/redis.git
synced 2026-06-08 16:24:26 -04:00
Fixes typo (double word) in memory overcommit message (#11675)
Fixes small typo in memory overcommit message in syscheck.c (double word can).
This commit is contained in:
parent
44c6770372
commit
25dc3b0757
1 changed files with 1 additions and 1 deletions
|
|
@ -154,7 +154,7 @@ int checkOvercommit(sds *error_msg) {
|
|||
*error_msg = sdsnew(
|
||||
"Memory overcommit must be enabled! Without it, a background save or replication may fail under low memory condition. "
|
||||
#if defined(USE_JEMALLOC)
|
||||
"Being disabled, it can can also cause failures without low memory condition, see https://github.com/jemalloc/jemalloc/issues/1328. "
|
||||
"Being disabled, it can also cause failures without low memory condition, see https://github.com/jemalloc/jemalloc/issues/1328. "
|
||||
#endif
|
||||
"To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the "
|
||||
"command 'sysctl vm.overcommit_memory=1' for this to take effect.");
|
||||
|
|
|
|||
Loading…
Reference in a new issue