Skip to content

Commit

Permalink
Add msg in engine to inform user of Rsync delay (#51)
Browse files Browse the repository at this point in the history
* Add log message to inform user of rsync delay.

* Add missing changelog links.
  • Loading branch information
jagmoreira authored Dec 9, 2024
1 parent 0862ee9 commit e842c4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Added
- **Initial commit** - Forge source code, unittests, docs, pyproject.toml, README.md, and LICENSE files.

[unreleased]: https://github.com/carsdotcom/cars-forge/compare/v1.0.2...HEAD
[unreleased]: https://github.com/carsdotcom/cars-forge/compare/v1.1.1...HEAD
[1.1.1]: https://github.com/carsdotcom/cars-forge/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/carsdotcom/cars-forge/compare/v1.0.2...v1.1.0
[1.0.2]: https://github.com/carsdotcom/cars-forge/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/carsdotcom/cars-forge/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/carsdotcom/cars-forge/releases/tag/v1.0.0
1 change: 1 addition & 0 deletions src/forge/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def engine(config):

try:
create(config)
logger.info('Waiting for 60s to ensure EC2 has finished starting up...')
time.sleep(60)
status = rsync(config)
status = run(config)
Expand Down

0 comments on commit e842c4b

Please sign in to comment.