-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Buffer: undefined method `+' for nil:NilClass #1999
Comments
I encountered the same issue. Steps to reproduce1. Put the following filesfluent.conf
lib/fluent/plugin/out_dummy.rb require 'fluent/plugin/output'
module Fluent::Plugin
class DummyOutput < Output
Fluent::Plugin.register_output('dummy', self)
def write(chunk)
raise "error" if rand(2).zero?
end
end
end 2. Launch fluentd
|
This is a regression of #1919 and occurs when
|
abicky
added a commit
to abicky/fluentd
that referenced
this issue
Jun 10, 2018
This commit resolves fluent#1999.
abicky
added a commit
to abicky/fluentd
that referenced
this issue
Jun 10, 2018
This commit resolves fluent#1999.
I've created a PR #2016. |
abicky
added a commit
to abicky/fluentd
that referenced
this issue
Jun 10, 2018
This commit resolves fluent#1999. Signed-off-by: abicky <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From time to time fluentd randomly crashes with a "undefined method `+' for nil:NilClass" for us.
We use
with the following config
and the full logs are:
The issue looks similar to #1187, but the splunk plugin is still using the 0.12 interface if I'm not mistaken.
Happy to provide any additional information, but I'm not really sure how to debug this further.
The text was updated successfully, but these errors were encountered: