Skip to content

Commit 1a5bc2c

Browse files
authored
Drop HostKeyAlgorithms in aruba (home-assistant#146619)
1 parent a66e9a1 commit 1a5bc2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

homeassistant/components/aruba/device_tracker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def _update_info(self) -> bool:
8989
def get_aruba_data(self) -> dict[str, dict[str, str]] | None:
9090
"""Retrieve data from Aruba Access Point and return parsed result."""
9191

92-
connect = f"ssh {self.username}@{self.host} -o HostKeyAlgorithms=ssh-rsa"
92+
connect = f"ssh {self.username}@{self.host}"
9393
ssh: pexpect.spawn[str] = pexpect.spawn(connect, encoding="utf-8")
9494
query = ssh.expect(
9595
[

0 commit comments

Comments
 (0)