aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cholakian <andrew@andrewvc.com>2018-05-31 08:19:03 -0500
committerAndrew Cholakian <andrew@andrewvc.com>2018-05-31 22:01:55 +0000
commit0a72df874da9e683bb5a23a0214889ae822afe1b (patch)
treeb9494cac51737d0fb94a5153fb937e7a529998a0
parent5541e70dda4ab5c37136733309b6c4817422ff63 (diff)
Use longer timeout for x-pack reload spec
This test flaked out on CI, so let's give it some more time before digging deeper. Fixes #9695
-rw-r--r--x-pack/qa/integration/management/multiple_pipelines_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/x-pack/qa/integration/management/multiple_pipelines_spec.rb b/x-pack/qa/integration/management/multiple_pipelines_spec.rb
index e9246bf4..d6e71d74 100644
--- a/x-pack/qa/integration/management/multiple_pipelines_spec.rb
+++ b/x-pack/qa/integration/management/multiple_pipelines_spec.rb
@@ -69,7 +69,7 @@ describe "Read configuration from elasticsearch" do
end
it "should immediately register a new pipeline state document when the pipeline is reloaded" do
- wait(20).for do
+ wait(40).for do
count_hashes(@pipelines.keys)
end.to eq(2)
@@ -84,7 +84,7 @@ describe "Read configuration from elasticsearch" do
push_elasticsearch_config(pipeline_id, config)
end
- wait(20).for do
+ wait(40).for do
count_hashes(@pipelines.keys)
end.to eq(4)
end