We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9781179 commit b95529dCopy full SHA for b95529d
spec/acceptance/stack_spec.rb
@@ -81,8 +81,9 @@ class { 'docker': #{docker_args} }
81
end
82
83
it 'should be idempotent' do
84
- apply_manifest(destroy, :catch_changes=>true)
85
- sleep 5
+ retry_on_error_matching(10, 3, /Removing network web_default/) do
+ apply_manifest(destroy, :catch_changes=>true)
86
+ end
87
88
89
it 'should not find a docker stack' do
@@ -135,8 +136,9 @@ class { 'docker': #{docker_args} }
135
136
137
138
- apply_manifest(@destroy_code, :catch_changes=>true)
139
140
+ apply_manifest(@destroy_code, :catch_changes=>true)
141
142
143
144
0 commit comments