mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
24 lines
658 B
Markdown
24 lines
658 B
Markdown
* 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*
|
|
|
|
|
|
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/actioncable/CHANGELOG.md) for previous changes.
|