Skip to content

Commit

Permalink
fix: default Redis db must be the same as in the gem
Browse files Browse the repository at this point in the history
  • Loading branch information
palkan committed Oct 16, 2023
1 parent 9862c5d commit 0af2bab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ type RedisConfig struct {
func NewRedisConfig() RedisConfig {
return RedisConfig{
KeepalivePingInterval: 30,
URL: "redis://localhost:6379/5",
URL: "redis://localhost:6379",
Channel: "__anycable__",
Group: "bx",
StreamReadBlockMilliseconds: 2000,
Expand Down

0 comments on commit 0af2bab

Please sign in to comment.