Remove neoFS from comments and __doc__

Signed-off-by: Aleksei Chetaev <alex.chetaev@gmail.com>
This commit is contained in:
Aleksei Chetaev 2023-02-16 15:50:09 +01:00 committed by Julia Kovshova
parent adb06aa158
commit ad8fd930c8
5 changed files with 10 additions and 10 deletions

View file

@ -33,7 +33,7 @@ class CLIConfig:
@dataclass
class ServiceConfig:
"""Describes neoFS service on some host.
"""Describes frostFS service on some host.
Attributes:
name: Name of the service that uniquely identifies it across all hosts.
@ -48,7 +48,7 @@ class ServiceConfig:
@dataclass
class HostConfig:
"""Describes machine that hosts neoFS services.
"""Describes machine that hosts frostFS services.
Attributes:
plugin_name: Name of plugin that should be used to manage the host.

View file

@ -20,11 +20,11 @@ logger = logging.getLogger("frostfs.testlib.hosting")
@dataclass
class HostAttributes(ParsedAttributes):
"""Represents attributes of host where Docker with neoFS runs.
"""Represents attributes of host where Docker with frostFS runs.
Attributes:
sudo_shell: Specifies whether shell commands should be auto-prefixed with sudo.
docker_endpoint: Protocol, address and port of docker where neoFS runs. Recommended format
docker_endpoint: Protocol, address and port of docker where frostFS runs. Recommended format
is tcp socket (https://docs.docker.com/engine/reference/commandline/dockerd/#daemon-socket-option),
for example: tcp://{address}:2375 (where 2375 is default docker port).
ssh_login: Login for SSH connection to the machine where docker runs.

View file

@ -7,7 +7,7 @@ from frostfs_testlib.plugins import load_plugin
class Hosting:
"""Hosting manages infrastructure where neoFS runs (machines and neoFS services)."""
"""Hosting manages infrastructure where frostFS runs (machines and frostFS services)."""
_hosts: list[Host]
_host_by_address: dict[str, Host]

View file

@ -11,9 +11,9 @@ class DiskInfo(dict):
class Host(ABC):
"""Interface of a host machine where neoFS services are running.
"""Interface of a host machine where frostFS services are running.
Allows to manage the machine and neoFS services that are hosted on it.
Allows to manage the machine and frostFS services that are hosted on it.
"""
def __init__(self, config: HostConfig) -> None: