From: antirez Date: Mon, 8 Nov 2010 15:14:15 +0000 (+0100) Subject: make sure to flush stdout every line read in monitor mode, to play well with redirect... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/d9d8ccab93ac18ab38ac19811bc05582c7f9f550 make sure to flush stdout every line read in monitor mode, to play well with redirection to file --- diff --git a/src/redis-cli.c b/src/redis-cli.c index fec0fce4..450c6d58 100644 --- a/src/redis-cli.c +++ b/src/redis-cli.c @@ -291,6 +291,7 @@ static int cliSendCommand(int argc, char **argv, int repeat) { redisAppendCommandArgv(context,argc,(const char**)argv,argvlen); while (config.monitor_mode) { if (cliReadReply() != REDIS_OK) exit(1); + fflush(stdout); } if (config.pubsub_mode) {