mirror of
http://github.com/valkey-io/valkey
synced 2024-11-21 16:46:15 +00:00
0cb97653b7
Changes the default value for the `pidfile` config. The template config file `valkey.conf` already contains `pidfile /var/run/valkey_6379.pid`. This is not a default. The default is what you get when you start valkey without config. Tests suites config pidfile changed to valkey accordingly. Signed-off-by: Shivshankar-Reddy <shiva.sheri.github@gmail.com>
38 lines
768 B
Plaintext
38 lines
768 B
Plaintext
# Server configuration for testing.
|
|
|
|
always-show-logo yes
|
|
notify-keyspace-events KEA
|
|
daemonize no
|
|
pidfile /var/run/valkey.pid
|
|
port 6379
|
|
timeout 0
|
|
bind 127.0.0.1
|
|
loglevel verbose
|
|
logfile ''
|
|
databases 16
|
|
latency-monitor-threshold 1
|
|
repl-diskless-sync-delay 0
|
|
|
|
# Turn off RDB by default (to speedup tests)
|
|
# Note the infrastructure in server.tcl uses a dict, we can't provide several save directives
|
|
save ''
|
|
|
|
rdbcompression yes
|
|
dbfilename dump.rdb
|
|
dir ./
|
|
|
|
slave-serve-stale-data yes
|
|
appendonly no
|
|
appendfsync everysec
|
|
no-appendfsync-on-rewrite no
|
|
activerehashing yes
|
|
|
|
enable-protected-configs yes
|
|
enable-debug-command yes
|
|
enable-module-command yes
|
|
|
|
propagation-error-behavior panic
|
|
|
|
# Make sure shutdown doesn't fail if there's an initial AOFRW
|
|
shutdown-on-sigterm force
|