Skip to content

Commit

Permalink
Fixing key_filename
Browse files Browse the repository at this point in the history
  • Loading branch information
costrouc committed Dec 9, 2022
1 parent 1937cd8 commit 279efac
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# [0.1.4] 12/09/2022

## Fixed

- typo in key_filename

# [0.1.3] 12/09/2022

## Added
Expand Down
4 changes: 2 additions & 2 deletions fs_task_queue/plugins/ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def _create_client(self, directory):
"port": int(p.port or 22),
"username": p.username or os.getlogin(),
"password": p.password,
"key_file": os.environ.get("PARAMIKO_SSH_KEYFILE"),
"key_filename": os.environ.get("PARAMIKO_SSH_KEYFILE"),
"passphrase": os.environ.get("PARAMIKO_SSH_PASSPHRASE"),
"path": p.path,
}
Expand All @@ -85,7 +85,7 @@ def _create_client(self, directory):
port=params["port"],
username=params["username"],
password=params["password"],
key_file=params["key_file"],
key_filename=params["key_filename"],
passphrase=params["passphrase"],
)
self._sftp_client = self._ssh_client.open_sftp()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "fs-task-queue"
version = "0.1.3"
version = "0.1.4"
description = "Filesystem based task queue"
readme = "README.md"
requires-python = ">=3.7"
Expand Down

0 comments on commit 279efac

Please sign in to comment.