From d83dd166f059549f6a928782052c2bcb9866a13c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Thu, 17 Oct 2024 17:55:51 +0200 Subject: [PATCH] fix: use the right config file... --- whowas/run_redis.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/whowas/run_redis.sh b/whowas/run_redis.sh index 8daf6d8..8047156 100755 --- a/whowas/run_redis.sh +++ b/whowas/run_redis.sh @@ -4,10 +4,10 @@ set -e set -x if [ -f ../../valkey/src/valkey-server ]; then - ../../valkey/src/valkey-server ./cache.conf + ../../valkey/src/valkey-server ./whowas.conf elif [ -f ../../redis/src/redis-server ]; then - ../../redis/src/redis-server ./cache.conf + ../../redis/src/redis-server ./whowas.conf else echo "Warning: using system redis-server. Valkey-server or redis-server from source is recommended." >&2 - /usr/bin/redis-server ./cache.conf + /usr/bin/redis-server ./whowas.conf fi