We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a66e9a1 commit 1a5bc2cCopy full SHA for 1a5bc2c
homeassistant/components/aruba/device_tracker.py
@@ -89,7 +89,7 @@ def _update_info(self) -> bool:
89
def get_aruba_data(self) -> dict[str, dict[str, str]] | None:
90
"""Retrieve data from Aruba Access Point and return parsed result."""
91
92
- connect = f"ssh {self.username}@{self.host} -o HostKeyAlgorithms=ssh-rsa"
+ connect = f"ssh {self.username}@{self.host}"
93
ssh: pexpect.spawn[str] = pexpect.spawn(connect, encoding="utf-8")
94
query = ssh.expect(
95
[
0 commit comments