Skip to content

Commit f6004e2

Browse files
authored
Merge pull request #78 from bai/doctypo
Fix use_partial_metadata typo
2 parents 358b6b2 + fc2427a commit f6004e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/fluent/plugin/filter_concat.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ def configure(conf)
6969
raise Fluent::ConfigError, "partial_value is required when partial_key is specified"
7070
end
7171
if @use_partial_metadata && @n_lines
72-
raise Fluent::ConfigError, "user_partial_metadata and n_lines are exclusive"
72+
raise Fluent::ConfigError, "use_partial_metadata and n_lines are exclusive"
7373
end
7474
if @use_partial_metadata && (@multiline_start_regexp || @multiline_end_regexp)
75-
raise Fluent::ConfigError, "user_partial_metadata and multiline_start_regexp/multiline_end_regexp are exclusive"
75+
raise Fluent::ConfigError, "use_partial_metadata and multiline_start_regexp/multiline_end_regexp are exclusive"
7676
end
7777
if @use_partial_metadata && @partial_key
78-
raise Fluent::ConfigError, "user_partial_metadata and partial_key are exclusive"
78+
raise Fluent::ConfigError, "use_partial_metadata and partial_key are exclusive"
7979
end
8080

8181
@mode = nil

0 commit comments

Comments
 (0)