From 2862536f73eb5d1f5e726dce3a8aef58f0d5d208 Mon Sep 17 00:00:00 2001 From: "Andrew S. Rosen" Date: Tue, 25 Jul 2023 09:58:22 -0700 Subject: [PATCH] Update slurm.py --- covalent_slurm_plugin/slurm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/covalent_slurm_plugin/slurm.py b/covalent_slurm_plugin/slurm.py index d51c3a5..e672721 100644 --- a/covalent_slurm_plugin/slurm.py +++ b/covalent_slurm_plugin/slurm.py @@ -74,8 +74,8 @@ class SlurmExecutor(AsyncBaseExecutor): Args: username: Username used to authenticate over SSH. address: Remote address or hostname of the Slurm login node. - ssh_key_file: Full path to the private RSA key used to authenticate over SSH (usually at /home/username/.ssh/id_rsa). - cert_file: Full path to the certificate file used to authenticate over SSH, if required (usually has extension .pub). + ssh_key_file: Path to the private RSA key used to authenticate over SSH (usually at ~/.ssh/id_rsa). Note that you should use the full, resolved path (i.e. do not use `~/` in the string). + cert_file: Path to the certificate file used to authenticate over SSH, if required (usually has extension .pub). Note that you should use the full, resolved path (i.e. do not use `~/` in the string). sshproxy: Dictionary of parameters for sshproxy, namely the "hosts": List[str], "username": str, and "secret": str. remote_workdir: Working directory on the remote cluster. create_unique_workdir: Whether to create a unique working (sub)directory for each task.