mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
Fix ActionCable not respecting REDIS_URL env var
This commit is contained in:
parent
ed0b28f553
commit
51b521dc2a
3 changed files with 8 additions and 2 deletions
|
|
@ -1 +1 @@
|
||||||
0.16.2
|
0.16.3
|
||||||
|
|
|
||||||
|
|
@ -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/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
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
|
# 0.16.2 - 2024-11-08
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
development:
|
development:
|
||||||
adapter: redis
|
adapter: redis
|
||||||
url: redis://localhost:6379/1
|
url: <%= ENV['REDIS_URL'] %>
|
||||||
|
|
||||||
test:
|
test:
|
||||||
adapter: test
|
adapter: test
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue