instance method
invalid_request_message
Ruby on Rails 5.0.7.2
Since v5.0.7.2 Last seen in v8.1.3.1 Private — implementation detail, not part of the public APISignature
invalid_request_message()
No documentation comment.
Source
# File actioncable/lib/action_cable/connection/base.rb, line 245
def invalid_request_message
'Failed to upgrade 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 245
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionCable::Connection::Base