Merge pull request #440 from gf3/fix/ssh-auth-methods

fix: do not hardcode Net::SSH auth_methods
This commit is contained in:
Donal McBreen
2023-09-11 14:32:37 +01:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ class Kamal::Configuration::Ssh
end
def options
{ user: user, proxy: proxy, auth_methods: [ "publickey" ], logger: logger, keepalive: true, keepalive_interval: 30 }.compact
{ user: user, proxy: proxy, logger: logger, keepalive: true, keepalive_interval: 30 }.compact
end
def to_h