mirror of
https://github.com/elastic/logstash.git
synced 2025-04-23 22:27:21 -04:00
Fix when settings set in the pipeline_pq_file_spec bleed into other examples
make sure we clone the LogStash::Settings before mutating it. Fixes: #6868 Fixes #6981
This commit is contained in:
parent
4c3a3ad526
commit
b709eb5c68
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ class PipelinePqFileOutput < LogStash::Outputs::Base
|
|||
end
|
||||
|
||||
describe LogStash::Pipeline do
|
||||
let(:pipeline_settings_obj) { LogStash::SETTINGS }
|
||||
let(:pipeline_settings_obj) { LogStash::SETTINGS.clone }
|
||||
let(:pipeline_id) { "main" }
|
||||
|
||||
let(:multiline_id) { "my-multiline" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue