Skip to content

Commit

Permalink
skip process isolation check for transmit and process
Browse files Browse the repository at this point in the history
Signed-off-by: Hao Liu <haoli@redhat.com>
  • Loading branch information
TheRealHaoLiu committed Jun 1, 2022
1 parent a349921 commit 0f12e05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansible_runner/interface.py
Expand Up @@ -83,7 +83,7 @@ def init_runner(**kwargs):
if logfile:
output.set_logfile(logfile)

if kwargs.get("process_isolation", False):
if kwargs.get("process_isolation", False) and kwargs.get("streamer") not in ('transmit', 'process'):
pi_executable = kwargs.get("process_isolation_executable", "podman")
if not check_isolation_executable_installed(pi_executable):
print(f'Unable to find process isolation executable: {pi_executable}')
Expand Down

0 comments on commit 0f12e05

Please sign in to comment.