Commit 7ccd2d0a authored by antirez's avatar antirez
Browse files

running the test using tcl8.5 directly instead of tclsh that too often it's a symlink to 8.4

parent f1a930bb
...@@ -81,7 +81,7 @@ staticsymbols: ...@@ -81,7 +81,7 @@ staticsymbols:
tclsh utils/build-static-symbols.tcl > staticsymbols.h tclsh utils/build-static-symbols.tcl > staticsymbols.h
test: test:
tclsh test-redis.tcl -p $(PORT) -h $(HOST) tclsh8.5 test-redis.tcl -p $(PORT) -h $(HOST)
bench: bench:
./redis-benchmark ./redis-benchmark
......
...@@ -9934,7 +9934,7 @@ int linuxOvercommitMemoryValue(void) { ...@@ -9934,7 +9934,7 @@ int linuxOvercommitMemoryValue(void) {
void linuxOvercommitMemoryWarning(void) { void linuxOvercommitMemoryWarning(void) {
if (linuxOvercommitMemoryValue() == 0) { if (linuxOvercommitMemoryValue() == 0) {
redisLog(REDIS_WARNING,"WARNING overcommit_memory is set to 0! Background save may fail under low condition memory. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect."); redisLog(REDIS_WARNING,"WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.");
} }
} }
#endif /* __linux__ */ #endif /* __linux__ */
......
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