You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried to fix the error by the following change:
diff --git a/lib/fluent/log.rb b/lib/fluent/log.rb
index 097216c3..30108510 100644
--- a/lib/fluent/log.rb+++ b/lib/fluent/log.rb@@ -625,5 +625,12 @@ module Fluent
super
end
end
++ def reopen(path, mode)+ if mode != 'a'+ raise "Unsupported mode: #{mode}"+ end+ super(path)+ end
end
end
The text was updated successfully, but these errors were encountered:
abicky
changed the title
fluentd exits by SIGUSR1 if its logrotate feature is enabled
fluentd exits on SIGUSR1 if its logrotate feature is enabled
Apr 17, 2018
Here is an example:
I've tried to fix the error by the following change:
However, I found another error...
The text was updated successfully, but these errors were encountered: