1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

Add QUIT command for orderly shutdown.

This commit is contained in:
Matt Ranney
2010-09-20 11:56:30 -07:00
parent 8cd56f5987
commit 6359a02208
3 changed files with 24 additions and 2 deletions

View File

@@ -369,8 +369,8 @@ function run_next_test() {
tests[test_name]();
} else {
console.log('\n completed \x1b[32m%d\x1b[0m tests in \x1b[33m%d\x1b[0m ms\n', test_count, new Date - all_start);
client.end();
client2.end();
client.quit();
client2.quit();
}
}