Commit 1fade3d3 authored by Tomasz Poradowski's avatar Tomasz Poradowski Committed by antirez
Browse files

always enable command history in redis-cli

- when redis-cli is running in a TTY - always enable command history
buffering, regardless if history file path can be successfully
determined
parent 9f4d4eef
...@@ -1386,8 +1386,9 @@ static void repl(void) { ...@@ -1386,8 +1386,9 @@ static void repl(void) {
/* Only use history and load the rc file when stdin is a tty. */ /* Only use history and load the rc file when stdin is a tty. */
if (isatty(fileno(stdin))) { if (isatty(fileno(stdin))) {
historyfile = getDotfilePath(REDIS_CLI_HISTFILE_ENV,REDIS_CLI_HISTFILE_DEFAULT); historyfile = getDotfilePath(REDIS_CLI_HISTFILE_ENV,REDIS_CLI_HISTFILE_DEFAULT);
if (historyfile != NULL) { //keep in-memory history always regardless if history file can be determined
history = 1; history = 1;
if (historyfile != NULL) {
linenoiseHistoryLoad(historyfile); linenoiseHistoryLoad(historyfile);
} }
cliLoadPreferences(); cliLoadPreferences();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment