mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
More spacing
This commit is contained in:
parent
95dfcce7ee
commit
9fda96b78c
6 changed files with 0 additions and 9 deletions
|
@ -1,6 +1,5 @@
|
|||
module ActionCable
|
||||
module Channel
|
||||
|
||||
class Base
|
||||
include Callbacks
|
||||
include Redis
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
module ActionCable
|
||||
module Channel
|
||||
|
||||
module Callbacks
|
||||
extend ActiveSupport::Concern
|
||||
|
||||
|
@ -25,8 +24,6 @@ module ActionCable
|
|||
self.periodic_timers += [ [ callback, every: every ] ]
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
end
|
|
@ -207,7 +207,6 @@ module ActionCable
|
|||
def log_tags
|
||||
server.log_tags.map { |tag| tag.respond_to?(:call) ? tag.call(request) : tag.to_s.camelize }
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
module ActionCable
|
||||
module Connection
|
||||
module Identifier
|
||||
|
||||
def internal_redis_channel
|
||||
"action_cable/#{connection_identifier}"
|
||||
end
|
||||
|
@ -13,7 +12,6 @@ module ActionCable
|
|||
def connection_gid(ids)
|
||||
ids.map {|o| o.to_global_id.to_s }.sort.join(":")
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -35,7 +35,6 @@ module ActionCable
|
|||
|
||||
handle_exception
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -24,7 +24,6 @@ module ActionCable
|
|||
def log(type, message)
|
||||
@logger.tagged(*@tags) { @logger.send type, message }
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue