From a360dbb35c2e2e75a658979c2b9fc82306d9fdc4 Mon Sep 17 00:00:00 2001 From: Ry Biesemeyer Date: Thu, 17 May 2018 18:42:32 +0000 Subject: [PATCH] specs: temporarily use memory queue as a default In an effort to stabilise our specs and reduce the amount of overflow from each spec to the next, this patch temporarily sets the default queue type to be the memory queue. Fixes #9601 --- spec/spec_helper.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 30ab077c0..f8853d477 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -44,9 +44,7 @@ RSpec.configure do |c| # Some tests mess with the settings. This ensures one test cannot pollute another LogStash::SETTINGS.reset - LogStash::SETTINGS.set("queue.type", "persisted") - LogStash::SETTINGS.set("queue.page_capacity", 1024 * 1024) - LogStash::SETTINGS.set("queue.max_events", 250) + LogStash::SETTINGS.set("queue.type", "memory") LogStash::SETTINGS.set("path.data", temp_directory) example.run