Skip to content

Commit 2250832

Browse files
committed
rubocop
1 parent c982acb commit 2250832

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/fluent/plugin/otlp/constant.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
require 'openssl'
3+
require "openssl"
44

55
module Fluent::Plugin::Otlp
66
CONTENT_TYPE_PAIN = "text/plain"

lib/fluent/plugin/out_otlp.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ class RetryableResponse < StandardError; end
2929
desc "The proxy for HTTP request"
3030
config_param :proxy, :string, default: ENV["HTTP_PROXY"] || ENV["http_proxy"]
3131

32-
desc 'Raise UnrecoverableError when the response is non success, 4xx/5xx'
32+
desc "Raise UnrecoverableError when the response is non success, 4xx/5xx"
3333
config_param :error_response_as_unrecoverable, :bool, default: true
34-
desc 'The list of retryable response code'
34+
desc "The list of retryable response code"
3535
config_param :retryable_response_codes, :array, value_type: :integer, default: nil
3636
end
3737

0 commit comments

Comments
 (0)