Skip to content

Commit 1c0a168

Browse files
committed
Raise retry count again to 20
Fixes tests in parallel mode
1 parent 0b40f06 commit 1c0a168

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/serverspec/spec/shared/typo3-solr/service.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
shared_examples 'typo3-solr::service::running' do
22
describe "service solr check" do
3-
it "should have running solr daemon", :retry => 10, :retry_wait => 3 do
3+
it "should have running solr daemon", :retry => 20, :retry_wait => 3 do
44
check_if_service_is_running_stable("java")
55
end
66
end

tests/serverspec/spec/shared/typo3-solr/test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
shared_examples 'typo3-solr::test' do
22
describe 'solr-system-status' do
3-
it 'solr version should be correct', :retry => 10, :retry_wait => 3 do
3+
it 'solr version should be correct', :retry => 20, :retry_wait => 3 do
44
content = get_url('http://localhost:8983/solr/admin/info/system?wt=json')
55
content = JSON.parse(content)
66

@@ -13,7 +13,7 @@
1313
end
1414

1515
describe 'solr-core-status' do
16-
it 'solr version should be correct', :retry => 10, :retry_wait => 3 do
16+
it 'solr version should be correct', :retry => 20, :retry_wait => 3 do
1717
content = get_url('http://localhost:8983/solr/admin/cores?indexInfo=false&wt=json')
1818
content = JSON.parse(content)
1919

0 commit comments

Comments
 (0)