deployment fixes

This commit is contained in:
2026-05-04 15:23:34 +02:00
parent 58975d150b
commit e5e31d5a3b
9 changed files with 39 additions and 18 deletions
@@ -50,14 +50,14 @@ def get_ssh_client() -> RemoteSSHClient:
settings.ssh_host or "<unset>",
settings.ssh_username or "<unset>",
settings.ssh_port,
settings.ssh_key_filename or "<unset>",
settings.ssh_key_path or "<unset>",
"set" if settings.ssh_password else "missing",
)
client = RemoteSSHClient(
host=settings.ssh_host,
username=settings.ssh_username,
port=settings.ssh_port,
key_filename=settings.ssh_key_filename or None,
key_filename=settings.ssh_key_path or None,
password=settings.ssh_password or None,
)
try: