Skip to content

Commit

Permalink
fix(kitchen): apply SCP workaround for opensuse-leap-15.2 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
myii committed May 26, 2020
1 parent c9bebb2 commit a2b2d68
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ssf/files/default/kitchen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,13 @@ platforms:
{{- format_driver_image(os, os_ver, salt_ver, py_ver, pre_salted) }}
{{- format_driver_prov_cmds(os, os_ver, salt_ver, py_ver, pre_salted) }}
{{- format_driver_run_cmds(os, os_ver) }}
{%- if [os, os_ver] == ['opensuse/leap', 15.1] %}
# Workaround to avoid intermittent failures on `opensuse-leap-15.1`:
{%- if os == 'opensuse/leap' %}
{%- if os_ver in [15.1, 15.2] %}
# Workaround to avoid intermittent failures on `opensuse-leap-{{ os_ver }}`:
# => SCP did not finish successfully (255): (Net::SCP::Error)
transport:
max_ssh_sessions: 1
{%- endif %}
{%- endif %}
{%- endif %}
{%- endfor %}
Expand Down

0 comments on commit a2b2d68

Please sign in to comment.