Merge pull request #819 from Keruspe/unstable

test-server: only listen to 127.0.0.1
This commit is contained in:
Salvatore Sanfilippo 2013-06-17 03:08:14 -07:00
commit 82d782d3b5
2 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ daemonize no
pidfile /var/run/redis.pid
port 6379
timeout 0
bind 127.0.0.1
loglevel verbose
logfile ''
databases 16

View File

@ -186,7 +186,7 @@ proc test_server_main {} {
if {!$::quiet} {
puts "Starting test server at port $port"
}
socket -server accept_test_clients $port
socket -server accept_test_clients -myaddr 127.0.0.1 $port
# Start the client instances
set ::clients_pids {}