aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/connection/client_socket_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* - Fixed ActionCable::Connection::ClientSocketTest that was overriding ↵Vipul A M2016-04-151-3/+2
| | | | | | ActionCable::Connection::StreamTest test name - Only add attr_readers for required attributes
* Gracefully handle disconnected clientsJeremy Daer2016-03-201-0/+65
We'll get `Errno::ECONNRESET` if the client forcibly disconnected. Just close the socket rather than raising the exception. Handle other errors in `ClientSocket#write`, too, mirroring the Faye error handling which swallows all `StandardError` on write.