From 3161149c0d99aa52d7b6fc6af625a65fec788721 Mon Sep 17 00:00:00 2001 From: Gabi Davar Date: Fri, 14 Jul 2017 11:08:36 +0300 Subject: [PATCH] match correct desc to param --- lib/fluent/plugin/in_syslog.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/fluent/plugin/in_syslog.rb b/lib/fluent/plugin/in_syslog.rb index e092bf2785..02d1d1647e 100644 --- a/lib/fluent/plugin/in_syslog.rb +++ b/lib/fluent/plugin/in_syslog.rb @@ -83,9 +83,9 @@ class SyslogInput < Input desc 'The field name of hostname of sender.' config_param :source_hostname_key, :string, default: nil - desc 'The field name of source address of sender.' - config_param :resolve_hostname, :bool, default: nil desc 'Connections will be disconnected right after receiving first message if this value is true.' + config_param :resolve_hostname, :bool, default: nil + desc 'The field name of source address of sender.' config_param :source_address_key, :string, default: nil desc 'The field name of the priority.' config_param :priority_key, :string, default: nil