File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 22require 'uri'
33require 'json'
44require 'concurrent'
5- require_relative '../services/websocket_connection_manager'
5+ # require_relative '../services/websocket_connection_manager'
66require_relative '../services/graphql_websocket_client'
77
88class GraphqlSubscriptionChannel < ApplicationCable ::Channel
@@ -36,7 +36,7 @@ def unsubscribed
3636
3737 close_bitquery_connection
3838
39- WebSocketConnectionManager . instance . remove_connection ( @subscription_id ) if @subscription_id
39+ WebsocketConnectionManager . instance . remove_connection ( @subscription_id ) if @subscription_id
4040 end
4141
4242 def subscribe ( data )
@@ -112,7 +112,7 @@ def handle_subscription(data)
112112 variables
113113 )
114114
115- WebSocketConnectionManager . instance . add_connection (
115+ WebsocketConnectionManager . instance . add_connection (
116116 @subscription_id ,
117117 connection ,
118118 @ws_client
You can’t perform that action at this time.
0 commit comments