From ba7beb827aaa0115d47db5087c3e22205caa8d6d Mon Sep 17 00:00:00 2001 From: Ahmad Farhat Date: Tue, 29 Sep 2020 11:31:42 -0400 Subject: [PATCH] Switched default cable adapter to postgres (#2139) --- config/cable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cable.yml b/config/cable.yml index 6f6c5911..8942e81a 100644 --- a/config/cable.yml +++ b/config/cable.yml @@ -5,6 +5,6 @@ test: adapter: test production: - adapter: <%= ENV['CABLE_ADAPTER'] || 'async' %> + adapter: <%= ENV['CABLE_ADAPTER'] || 'postgresql' %> url: <%= ENV['REDIS_URL'] %> channel_prefix: greenlight_production \ No newline at end of file