diff --git a/smartsim/_core/config/config.py b/smartsim/_core/config/config.py index e2e33beb2..4c8dbcf5e 100644 --- a/smartsim/_core/config/config.py +++ b/smartsim/_core/config/config.py @@ -45,15 +45,12 @@ # # REDIS_CONF # - Path to the redis.conf file -# - Default: /SmartSim/smartsim/config/redis6.conf # # REDIS_PATH # - Path to the redis-server executable -# - Default: /SmartSim/smartsim/bin/redis-server # # REDIS_CLI_PATH # - Path to the redis-cli executable -# - Default: /SmartSim/smartsim/bin/redis-cli # # SMARTSIM_LOG_LEVEL # - Log level for SmartSim @@ -93,7 +90,7 @@ def __init__(self) -> None: self.lib_path = Path(dependency_path, "lib").resolve() self.bin_path = Path(dependency_path, "bin").resolve() - self.conf_path = Path(dependency_path, "config", "redis6.conf") + self.conf_path = Path(dependency_path, "config", "redis.conf") @property def redisai(self) -> str: