aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/action_cable/connection/base.rb2
-rw-r--r--lib/action_cable/server.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/action_cable/connection/base.rb b/lib/action_cable/connection/base.rb
index efabe40b73..e5d63abe5b 100644
--- a/lib/action_cable/connection/base.rb
+++ b/lib/action_cable/connection/base.rb
@@ -22,7 +22,7 @@ module ActionCable
@started_at = Time.now
end
- def response
+ def process
logger.info started_request_message
if websocket.possible?
diff --git a/lib/action_cable/server.rb b/lib/action_cable/server.rb
index dbfadaa34c..3a16f51757 100644
--- a/lib/action_cable/server.rb
+++ b/lib/action_cable/server.rb
@@ -17,7 +17,7 @@ module ActionCable
end
def call(env)
- @connection_class.new(self, env).response
+ @connection_class.new(self, env).process
end
def worker_pool