Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Properly show class names #2671

Merged
merged 1 commit into from
Oct 29, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/fluent/time.rb
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def initialize(type, localtime = nil, timezone = nil)

def parse_unixtime(value)
unless value.is_a?(String) || value.is_a?(Numeric)
raise TimeParseError, "value must be a string or a number: #{value}(value.class)"
raise TimeParseError, "value must be a string or a number: #{value}(#{value.class})"
end

if @cache1_key == value
Expand Down Expand Up @@ -323,7 +323,7 @@ def parse_unixtime(value)
## parse_by_to_r (msec): 28.232856 sec
def parse_float(value)
unless value.is_a?(String) || value.is_a?(Numeric)
raise TimeParseError, "value must be a string or a number: #{value}(value.class)"
raise TimeParseError, "value must be a string or a number: #{value}(#{value.class})"
end

if @cache1_key == value
Expand Down