Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions src/remote_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -761,23 +761,6 @@ def get_tempdir(self) -> str:
assert type(temp_dir) is str
return temp_dir

@staticmethod
def _is_port_free__process_0(error: str) -> bool:
assert type(error) is str
#
# Example of error text:
# "Connection to localhost (127.0.0.1) 1024 port [tcp/*] succeeded!\n"
#
# May be here is needed to check error message?
#
return False

@staticmethod
def _is_port_free__process_1(error: str) -> bool:
assert type(error) is str
# May be here is needed to check error message?
return True

@staticmethod
def _build_cmdline(cmd, exec_env: typing.Dict = None) -> str:
cmd_items = __class__._create_exec_env_list(exec_env)
Expand Down