Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Sher Sun <[email protected]>
  • Loading branch information
Sher Sun committed Apr 30, 2024
1 parent b1431fa commit 2f00910
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -5757,8 +5757,8 @@ sds genRedisInfoString(dict *section_dict, int all_sections, int everything) {
"mem_overhead_db_hashtable_rehashing:%zu\r\n", mh->overhead_db_hashtable_rehashing,
"active_defrag_running:%d\r\n", server.active_defrag_running,
"lazyfree_pending_objects:%zu\r\n", lazyfreeGetPendingObjectsCount(),
#ifdef USE_JEMALLOC
"defrag_supported: %s\r\n", "yes",
#if defined(USE_JEMALLOC)
"defrag_supported: %s\r\n", "yes",
#else
"defrag_supported: %s\r\n", "no",
#endif
Expand Down

0 comments on commit 2f00910

Please sign in to comment.