From b039ee99401ccd760fdab7cfae3e87cef86825dd Mon Sep 17 00:00:00 2001 From: Andrey Berezin Date: Mon, 18 Sep 2023 17:48:30 +0300 Subject: [PATCH] Dev Env should not use sudo by default --- src/frostfs_testlib/hosting/docker_host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frostfs_testlib/hosting/docker_host.py b/src/frostfs_testlib/hosting/docker_host.py index 3addd92..e2bc949 100644 --- a/src/frostfs_testlib/hosting/docker_host.py +++ b/src/frostfs_testlib/hosting/docker_host.py @@ -61,7 +61,7 @@ class ServiceAttributes(ParsedAttributes): class DockerHost(Host): """Manages services hosted in Docker containers running on a local or remote machine.""" - def get_shell(self, sudo: bool = True) -> Shell: + def get_shell(self, sudo: bool = False) -> Shell: host_attributes = HostAttributes.parse(self._config.attributes) command_inspectors = [] if sudo: