]> git.saurik.com Git - redis.git/commitdiff
use the more generic -BUSY error for idle scripts
authorantirez <antirez@gmail.com>
Thu, 27 Oct 2011 18:56:12 +0000 (20:56 +0200)
committerantirez <antirez@gmail.com>
Thu, 27 Oct 2011 18:56:12 +0000 (20:56 +0200)
src/redis.c

index 32644e33edbdbbae198306b61e6ea7fbf5ea15c0..a9d44fa91e23071bb2b988f0f3a15edfea9156e9 100644 (file)
@@ -794,7 +794,7 @@ void createSharedObjects(void) {
     shared.loadingerr = createObject(REDIS_STRING,sdsnew(
         "-LOADING Redis is loading the dataset in memory\r\n"));
     shared.slowscripterr = createObject(REDIS_STRING,sdsnew(
-        "-SLOWSCRIPT Redis is busy running a script. Please wait or stop the server with SHUTDOWN.\r\n"));
+        "-BUSY Redis is busy running a script. Please wait or stop the server with SHUTDOWN.\r\n"));
     shared.space = createObject(REDIS_STRING,sdsnew(" "));
     shared.colon = createObject(REDIS_STRING,sdsnew(":"));
     shared.plus = createObject(REDIS_STRING,sdsnew("+"));