Conversation
| ); | ||
| } | ||
|
|
||
| loggerService.debug(`docker compose logs:\n${output}`); |
There was a problem hiding this comment.
IMO, removing this is introducing a breaking change
6100198 to
6f7e04a
Compare
Super-linter summary
Super-linter detected linting errors For more information, see the GitHub Actions workflow run Powered by Super-linter BIOME_FORMATSPELL_CODESPELL |
6f7e04a to
05978b5
Compare
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #298 +/- ##
===========================================
- Coverage 100.00% 93.45% -6.55%
===========================================
Files 9 9
Lines 173 214 +41
Branches 37 50 +13
===========================================
+ Hits 173 200 +27
- Misses 0 6 +6
- Partials 0 8 +8 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Co-authored-by: neilime <314088+neilime@users.noreply.github.com>
Co-authored-by: neilime <314088+neilime@users.noreply.github.com>
05978b5 to
5e62815
Compare
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
Co-authored-by: neilime <314088+neilime@users.noreply.github.com> Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
5e62815 to
6f330cd
Compare
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
Large
docker compose logsoutput could crash the post-job hook before cleanup completed because log collection buffered the full command output in memory. As a result,docker compose downcould be skipped when service logs were very large.Post-job log collection
docker-composepackagelogs()helper with a directdocker compose logsprocess spawn.post-runner, since logs are now emitted incrementally.Cleanup resilience
docker compose downeven when log collection exits non-zero, is terminated by signal, or cannot be spawned.Failure reporting