Skip to content

Commit

Permalink
Use async actioncable adapter in sqlite mode
Browse files Browse the repository at this point in the history
  • Loading branch information
dbackeus committed Jun 17, 2024
1 parent 276f141 commit 0ad0b3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/cable.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
development:
adapter: postgresql
adapter: <%= ENV["DB_ADAPTER"] == "sqlite" ? "async" : "postgresql" %>

test:
adapter: test

production:
adapter: postgresql
adapter: <%= ENV["DB_ADAPTER"] == "sqlite" ? "async" : "postgresql" %>

0 comments on commit 0ad0b3c

Please sign in to comment.