From 83be2d5db1319dc985bcc63110c58aa44f6a380a Mon Sep 17 00:00:00 2001 From: Lars Henrik Mai Date: Sat, 27 Feb 2016 10:43:15 +0100 Subject: [PATCH] Fix 503 errors in tests from Elasticsearch due to cluster not being ready --- spec/support/elasticsearch.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/support/elasticsearch.rb b/spec/support/elasticsearch.rb index 4575c58..2a3f246 100644 --- a/spec/support/elasticsearch.rb +++ b/spec/support/elasticsearch.rb @@ -1,5 +1,6 @@ RSpec.configure do |config| config.before :each, elasticsearch: true do Paper.__elasticsearch__.create_index!(force: true) + Elasticsearch::Model.client.cluster.health wait_for_status: "yellow" end end