diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2015-12-16 20:41:53 +0100 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2015-12-16 20:41:53 +0100 |
commit | 6357437de4ea128b127dfb06fc790ee1f16270bd (patch) | |
tree | 18f42aeedb5d7a3cbd03f09eb6cae3c764e54c9c /railties/lib | |
parent | ae48ea69cf378d03ffed0f694587a16696795387 (diff) | |
download | rails-6357437de4ea128b127dfb06fc790ee1f16270bd.tar.gz rails-6357437de4ea128b127dfb06fc790ee1f16270bd.tar.bz2 rails-6357437de4ea128b127dfb06fc790ee1f16270bd.zip |
Saner increments
Diffstat (limited to 'railties/lib')
-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 |