Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
disable adding merkil to pod containers since it cannot work there (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
izapolsk authored Nov 21, 2018
1 parent 3f5a005 commit 64b678b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cfme/fixtures/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def ensure_websocket_role_disabled(appliance):
@pytest.fixture(scope="session", autouse=True)
def fix_merkyl_workaround(request, appliance):
"""Workaround around merkyl not opening an iptables port for communication"""
if isinstance(appliance, DummyAppliance) or appliance.is_dev:
if isinstance(appliance, DummyAppliance) or appliance.is_dev or appliance.is_pod:
return
ssh_client = appliance.ssh_client
if ssh_client.run_command('test -s /etc/init.d/merkyl').failed:
Expand Down

0 comments on commit 64b678b

Please sign in to comment.