Skip to content

Commit 147f15e

Browse files
committed
Update error message
Signed-off-by: Kenji Okimoto <[email protected]>
1 parent 2e8bf72 commit 147f15e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fluent/plugin/filter_concat.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def configure(conf)
5858
raise Fluent::ConfigError, "n_lines and multiline_start_regexp/multiline_end_regexp are exclusive"
5959
end
6060
if @n_lines.nil? && @multiline_start_regexp.nil? && @multiline_end_regexp.nil? && @partial_key.nil?
61-
raise Fluent::ConfigError, "Either n_lines or multiline_start_regexp or multiline_end_regexp is required"
61+
raise Fluent::ConfigError, "Either n_lines, multiline_start_regexp, multiline_end_regexp, or partial_key is required"
6262
end
6363
if @partial_key && @n_lines
6464
raise Fluent::ConfigError, "partial_key and n_lines are exclusive"

0 commit comments

Comments
 (0)