Skip to content

Commit 2281ebb

Browse files
authored
fix: remove DSSKey since it has been removed by paramiko (#527)
xref: paramiko/paramiko#2535 Signed-off-by: Jinzhe Zeng <[email protected]>
1 parent 2da7602 commit 2281ebb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

dpdispatcher/contexts/ssh_context.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ def _setup_ssh(self):
163163
if os.path.exists(key_path):
164164
for pkey_class in (
165165
paramiko.RSAKey,
166-
paramiko.DSSKey,
167166
paramiko.ECDSAKey,
168167
paramiko.Ed25519Key,
169168
):
@@ -181,7 +180,6 @@ def _setup_ssh(self):
181180
elif self.look_for_keys:
182181
for keytype, name in [
183182
(paramiko.RSAKey, "rsa"),
184-
(paramiko.DSSKey, "dsa"),
185183
(paramiko.ECDSAKey, "ecdsa"),
186184
(paramiko.Ed25519Key, "ed25519"),
187185
]:

0 commit comments

Comments
 (0)