instance method
successful_request_message
Ruby on Rails 5.2.8.1
Since v5.2.8.1 PrivateSignature
successful_request_message()
No documentation comment.
Source
# File actioncable/lib/action_cable/connection/base.rb, line 253
def successful_request_message
"Successfully upgraded to WebSocket (REQUEST_METHOD: %s, HTTP_CONNECTION: %s, HTTP_UPGRADE: %s)" % [
env["REQUEST_METHOD"], env["HTTP_CONNECTION"], env["HTTP_UPGRADE"]
]
end
Defined in actioncable/lib/action_cable/connection/base.rb line 253
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionCable::Connection::Base