rails--rails/actioncable/CHANGELOG.md

25 lines
658 B
Markdown
Raw Normal View History

* Add PostgreSQL subscription connection identificator.
Now you can distinguish Action Cable PostgreSQL subscription connections among others.
Also, you can set custom `id` in `cable.yml` configuration.
```sql
SELECT application_name FROM pg_stat_activity;
/*
application_name
------------------------
psql
ActionCable-PID-42
(2 rows)
*/
```
*Sergey Ponomarev*
* Subscription confirmations and rejections are now logged at the `DEBUG` level instead of `INFO`.
*DHH*
2019-04-24 19:57:14 +00:00
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/actioncable/CHANGELOG.md) for previous changes.