summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2015-11-12 12:59:19 +0100
committerantirez <antirez@gmail.com>2015-11-17 15:43:22 +0100
commit3ab0b4d6d045a35a1b587acf6569a8a303fc09a5 (patch)
treeb59281897243deef7003aac9acd077f974a04d5b
parent56d9bb8c554b3d8f64d6a5c6c77c9287dabf541b (diff)
downloadredis-3ab0b4d6d045a35a1b587acf6569a8a303fc09a5.tar.gz
Lua debugger: inform user changes are rolled back.
When redis-cli will support the synchronous mode, this will not be printed.
-rw-r--r--src/redis-cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/redis-cli.c b/src/redis-cli.c
index 67b707ad5..216544ce0 100644
--- a/src/redis-cli.c
+++ b/src/redis-cli.c
@@ -1116,7 +1116,7 @@ static void repl(void) {
if (config.eval_ldb_end) {
config.eval_ldb_end = 0;
cliReadReply(0);
- printf("\n(Lua debugging session ended)\n\n");
+ printf("\n(Lua debugging session ended. Dataset changes rolled back)\n\n");
}
elapsed = mstime()-start_time;