Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
fix server
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottLinnn committed Apr 30, 2024
1 parent 0d77979 commit febabc5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion server/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ impl ServerNode {
PathBuf::from(&config.cache_dir),
config.max_size,
config.bucket_size,
vec![format!("redis://0.0.0.0:{}", config.redis_port)],
vec![format!(
"redis://{}:{}",
config.server_ip, config.redis_port
)],
config.redis_port,
));
ServerNode {
Expand Down

0 comments on commit febabc5

Please sign in to comment.