From 2b5a63e2274b532d722bc51d79f327c78025ecb5 Mon Sep 17 00:00:00 2001 From: Yuta Iwama Date: Mon, 3 Jun 2019 11:36:48 +0900 Subject: [PATCH] Remove unused semicolon Signed-off-by: Yuta Iwama --- lib/fluent/plugin/out_forward.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fluent/plugin/out_forward.rb b/lib/fluent/plugin/out_forward.rb index 058f8a02da..8b6ad4c130 100644 --- a/lib/fluent/plugin/out_forward.rb +++ b/lib/fluent/plugin/out_forward.rb @@ -638,7 +638,7 @@ def fetch_or(key = Thread.current.object_id) @active_socks[key] = TimedSocket.new(timeout, yield, 0) end - @active_socks[key].ref += 1; + @active_socks[key].ref += 1 @active_socks[key].sock end end