-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: do checksum check after downloading platform zip file #125
Conversation
442bfa5
to
a5824b7
Compare
E2E Test Results735 tests +1 735 ✅ +1 13m 9s ⏱️ + 1m 10s Results for commit 6cda7e1. ± Comparison against base commit 8fd976b. This pull request removes 2 and adds 3 tests. Note that renamed tests count towards both.
♻️ This comment has been updated with latest results. |
Coverage summary from CodacySee diff coverage on Codacy
Coverage variation details
Coverage variation is the difference between the coverage for the head and common ancestor commits of the pull request branch: Diff coverage details
Diff coverage is the percentage of lines that are covered by tests out of the coverable lines that the pull request added or modified: See your quality gate settings Change summary preferencesYou may notice some variations in coverage metrics with the latest Coverage engine update. For more details, visit the documentation |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #125 +/- ##
==========================================
+ Coverage 63.73% 63.76% +0.02%
==========================================
Files 27 27
Lines 2570 2558 -12
Branches 422 373 -49
==========================================
- Hits 1638 1631 -7
+ Misses 932 927 -5
|
… in the container Signed-off-by: Lenin Mehedy <[email protected]>
Signed-off-by: Lenin Mehedy <[email protected]>
4a2cd69
to
6cda7e1
Compare
## [0.22.0](v0.21.2...v0.22.0) (2024-03-08) ### Features * **cli:** allow user to set jvm options for Hedera nodes ([#84](#84)) ([22ff35d](22ff35d)) * download helm binary based on os and platform architecture ([#128](#128)) ([e64e9a2](e64e9a2)) ### Bug Fixes * do checksum check after downloading platform zip file ([#125](#125)) ([3d91617](3d91617)) * updated incorrect log messages ([#132](#132)) ([d890974](d890974)) ### Performance Improvements * enhance account key update logic to batch transactions instead of loading all with sleep ([#105](#105)) ([e4bd1ef](e4bd1ef))
🎉 This PR is included in version 0.22.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Description
Recently we made changes to pull platform zip file directly inside the container. This PR introduces the required checksum check and it runs in parallel for all nodes, which reduces overall execution time.
This pull request changes the following:
Related Issues