Skip to content

Commit

Permalink
BM: refactor to use internal address for consistent.
Browse files Browse the repository at this point in the history
  • Loading branch information
squirrelsc committed Dec 30, 2024
1 parent f2d9783 commit 4733ade
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lisa/sut_orchestrator/baremetal/readychecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,11 @@ def is_ready(self, node: Node) -> bool:
connection = context.client.connection
remote_node.set_connection_info(
address=connection.address,
public_port=connection.port,
port=connection.port,
username=connection.username,
password=connection.password,
private_key_file=connection.private_key_file,
use_public_address=False,
)
self._log.debug(f"try to connect to client: {node}")
try_connect(
Expand Down

0 comments on commit 4733ade

Please sign in to comment.