1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actioncable/CHANGELOG.md
2019-12-31 10:18:55 -03:00

658 B

  • 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.

    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 for previous changes.