Navigation Menu

Skip to content

Commit

Permalink
in: fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
kenhys committed Apr 11, 2017
1 parent 67cfa8e commit 0d4a07b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions lib/fluent/plugin/in_groonga.rb
Expand Up @@ -139,18 +139,18 @@ def configure(conf)

def start
listen_socket = TCPServer.new(@bind, @port)
@loop = Coolio::Loop.new
@loop = Coolio::Loop.new

@socket = Coolio::TCPServer.new(listen_socket, nil,
handler_class, self)
@loop.attach(@socket)
@socket = Coolio::TCPServer.new(listen_socket, nil,
handler_class, self)
@loop.attach(@socket)

@shutdown_notifier = Coolio::AsyncWatcher.new
@loop.attach(@shutdown_notifier)
@shutdown_notifier = Coolio::AsyncWatcher.new
@loop.attach(@shutdown_notifier)

@thread = Thread.new do
run
end
@thread = Thread.new do
run
end
end

def shutdown
Expand Down

0 comments on commit 0d4a07b

Please sign in to comment.