Cannot pass look_for_keys via FS URL
Ouverte
enhancement
- Langage dominant
- Python
- Étoiles
- 94
- Forks
- 32
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
While it is possible to pass `look_for_keys` to the underlying paramiko Client as follows
```python
from fs.sshfs import SSHFS
my_fs = SSHFS(..., look_for_keys=False)
```
I am unable to do so when using an FS URL:
```python
import fs
my_fs = fs.open_fs("ssh://[user[:password]@]host[:port]/[directory]?look-for-keys=False")
my_fs = fs.open_fs("ssh://[user[:password]@]host[:port]/[directory]?look_for_keys=False")
```
Looking at `SSHOpener`, this could be remedied by passing `look_for_keys` in when constructing SSHFS, much like e.g. `pkey` is.
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Évaluation
Cette issue n'a pas encore été évaluée.