Skip to content

Commit

Permalink
Made the changes and updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
kessler-frost committed Sep 14, 2023
1 parent 5245096 commit ba509f5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 161 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Formatted executor block under Qelectron job details to handle any class-type values
- Fixed test-cases to handle latest pydantic version changes
- Rsync command fixed to recursively copy files when using SSH
- Removed accidentally added migrations build files

### Changed

Expand Down
53 changes: 0 additions & 53 deletions build/lib/covalent_migrations/README.md

This file was deleted.

106 changes: 0 additions & 106 deletions build/lib/covalent_migrations/alembic.ini

This file was deleted.

4 changes: 2 additions & 2 deletions covalent/_file_transfer/strategies/rsync_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ def get_rsync_ssh_cmd(
remote_filepath = remote_file.filepath
args = ["rsync"]
if self.private_key_path:
args.append(f'-e "ssh -i {self.private_key_path}"')
args.append(f'-ae "ssh -i {self.private_key_path}"')
else:
args.append("-e ssh")
args.append("-ae ssh")

remote_source = f"{self.user}@{self.host}:{remote_filepath}"

Expand Down

0 comments on commit ba509f5

Please sign in to comment.