From 84f78cd9f93e27b11323cfec28b1de2d574518ad Mon Sep 17 00:00:00 2001 From: Gianni Chiappetta Date: Fri, 1 Sep 2023 15:11:12 -0400 Subject: [PATCH] fix: do not hardcode Net::SSH auth_methods --- lib/kamal/configuration/ssh.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kamal/configuration/ssh.rb b/lib/kamal/configuration/ssh.rb index c98fca71..57a740b7 100644 --- a/lib/kamal/configuration/ssh.rb +++ b/lib/kamal/configuration/ssh.rb @@ -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