Fix ActionCable not respecting REDIS_URL env var

This commit is contained in:
Eugene Burmakin 2024-11-10 22:00:52 +01:00
parent ed0b28f553
commit 51b521dc2a
3 changed files with 8 additions and 2 deletions

View file

@ -1 +1 @@
0.16.2
0.16.3

View file

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
# 0.16.2 - 2024-11-10
### Fixed
- Make ActionCable respect REDIS_URL env var. Previously, ActionCable was trying to connect to Redis on localhost.
# 0.16.2 - 2024-11-08
### Fixed

View file

@ -1,6 +1,6 @@
development:
adapter: redis
url: redis://localhost:6379/1
url: <%= ENV['REDIS_URL'] %>
test:
adapter: test