]> git.saurik.com Git - redis.git/blobdiff - src/debug.c
Merge branch 'unstable' into limits
[redis.git] / src / debug.c
index f16bcfd16a9094012d9ce5694f7d5f7988d234a3..54920032fd891262edec0fdacb8f0ac381366b7f 100644 (file)
@@ -589,6 +589,8 @@ void sigsegvHandler(int sig, siginfo_t *info, void *secret) {
     /* Log INFO and CLIENT LIST */
     redisLog(REDIS_WARNING, "--- INFO OUTPUT");
     infostring = genRedisInfoString("all");
+    infostring = sdscatprintf(infostring, "hash_init_value: %u\n",
+        dictGetHashFunctionSeed());
     redisLogRaw(REDIS_WARNING, infostring);
     redisLog(REDIS_WARNING, "--- CLIENT LIST OUTPUT");
     clients = getAllClientsInfoString();