From 51b521dc2a557ac515390b7656f3e14e3d8077a6 Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Sun, 10 Nov 2024 22:00:52 +0100 Subject: [PATCH] Fix ActionCable not respecting REDIS_URL env var --- .app_version | 2 +- CHANGELOG.md | 6 ++++++ config/cable.yml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.app_version b/.app_version index 201a22c8..7eb3095a 100644 --- a/.app_version +++ b/.app_version @@ -1 +1 @@ -0.16.2 +0.16.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f32e0fe..86c21e16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/config/cable.yml b/config/cable.yml index 023d2906..c3738c80 100644 --- a/config/cable.yml +++ b/config/cable.yml @@ -1,6 +1,6 @@ development: adapter: redis - url: redis://localhost:6379/1 + url: <%= ENV['REDIS_URL'] %> test: adapter: test