]> git.saurik.com Git - redis.git/blobdiff - src/diskstore.c
test adapted to run with diskstore, and a few bugs fixed
[redis.git] / src / diskstore.c
index 382afb4fb14300d3376813a24ca69d6013eee985..49c8706a48528141eb48bf3bab6dbada6bb837f4 100644 (file)
@@ -456,7 +456,7 @@ void *dsRdbSave_thread(void *arg) {
     /* Use RENAME to make sure the DB file is changed atomically only
      * if the generate DB file is ok. */
     if (rename(tmpfile,filename) == -1) {
-        redisLog(REDIS_WARNING,"Error moving temp DB file on the final destination: %s", strerror(errno));
+        redisLog(REDIS_WARNING,"Error moving temp DB file on the final destination: %s (diskstore)", strerror(errno));
         unlink(tmpfile);
         dsRdbSaveSetState(REDIS_BGSAVE_THREAD_DONE_ERR);
         return NULL;