mirror of
https://github.com/elastic/logstash.git
synced 2025-06-27 17:08:55 -04:00
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
This commit is contained in:
parent
219ebae452
commit
a360dbb35c
1 changed files with 1 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue