diff options
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/config/redis/cable.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/config/redis/cable.yml b/railties/lib/rails/generators/rails/app/templates/config/redis/cable.yml index d68aa719da..0156763c95 100644 --- a/railties/lib/rails/generators/rails/app/templates/config/redis/cable.yml +++ b/railties/lib/rails/generators/rails/app/templates/config/redis/cable.yml @@ -1,8 +1,8 @@ production: - url: redis://localhost:6379/3 + url: redis://localhost:6379/1 development: - url: redis://localhost:6379/1 + url: redis://localhost:6379/2 test: - url: redis://localhost:6379/2 + url: redis://localhost:6379/3 |