Unverified Commit 7410d985 authored by Binbin's avatar Binbin Committed by GitHub
Browse files

Remove overhead.hashtable.slot-to-keys from memory-stats reply_schema (#12784)

overhead.hashtable.slot-to-keys was added in 7.0 in #10017, then removed
in #11695. Now remove it from reply_schema.
parent 15b993f1
...@@ -108,9 +108,6 @@ ...@@ -108,9 +108,6 @@
}, },
"overhead.hashtable.expires": { "overhead.hashtable.expires": {
"type": "integer" "type": "integer"
},
"overhead.hashtable.slot-to-keys": {
"type": "integer"
} }
}, },
"additionalProperties": false "additionalProperties": false
......
...@@ -1600,7 +1600,6 @@ NULL ...@@ -1600,7 +1600,6 @@ NULL
addReplyLongLong(c,mh->db[j].overhead_ht_expires); addReplyLongLong(c,mh->db[j].overhead_ht_expires);
} }
addReplyBulkCString(c,"overhead.total"); addReplyBulkCString(c,"overhead.total");
addReplyLongLong(c,mh->overhead_total); addReplyLongLong(c,mh->overhead_total);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment