From 29122932ef39f8b55f975083ebb2413a9f117c4f Mon Sep 17 00:00:00 2001 From: pilchkinstein-gtv Date: Fri, 2 Mar 2018 23:22:13 +0000 Subject: [PATCH] Fixed lint warnings --- examples/source.pp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/source.pp b/examples/source.pp index ec1dee8..0c2a9c2 100644 --- a/examples/source.pp +++ b/examples/source.pp @@ -2,17 +2,17 @@ ::fluentd::source { 'test': priority => 10, config => { - 'type' => 'tail', - 'format' => 'json', - 'path' => '/var/log/test-application/*.json', - 'parse' => { - 'type' => 'regexp', - 'expression' => '^(?[^ ]*) (?[^ ]*) (?\d*)$' + 'type' => 'tail', + 'format' => 'json', + 'path' => '/var/log/test-application/*.json', + 'parse' => { + 'type' => 'regexp', + 'expression' => '^(?[^ ]*) (?[^ ]*) (?\d*)$' }, - 'storage'=> { - 'type' => 'local', - 'path' => 'test.pos' + 'storage' => { + 'type' => 'local', + 'path' => 'test.pos' }, - 'tag' => 'application.test' + 'tag' => 'application.test' } }