mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
reorder env keys in the generated config/cable.yml
Conventionally envs are ordered development -> test -> production.
This commit is contained in:
parent
88962bc342
commit
0827f9932f
1 changed files with 4 additions and 5 deletions
|
@ -1,10 +1,9 @@
|
|||
# Action Cable uses Redis by default to administer connections, channels, and sending/receiving messages over the WebSocket.
|
||||
production:
|
||||
adapter: redis
|
||||
url: redis://localhost:6379/1
|
||||
|
||||
development:
|
||||
adapter: async
|
||||
|
||||
test:
|
||||
adapter: async
|
||||
|
||||
production:
|
||||
adapter: redis
|
||||
url: redis://localhost:6379/1
|
||||
|
|
Loading…
Reference in a new issue