Make build functions more error-resilient #149
Labels
No labels
Roadmap
V
bug
docs
duplicate
enhancement
good first issue
help wanted
idea
invalid
question
wontfix
Idea
Roadmap
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No project
No assignees
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference: vieter-v/vieter#149
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently the
build_repofunction fails the moment it encounters any sort of error with the Docker daemon. This seems to be causing my cron builds to just not work because they fail instantly. I've added some debug logs to hopefully see what's going on, but this functions should be improved to better handle temporary errors by the Docker daemon.This was wrong actually. The real "bug" that caused it is #152, because my servers automatically clean their Docker daemon every 24 hours. This caused the builder image to be removed, causing the builds to fail.
Thanks to the refactor in #183 this issue might be fixed, as the refactor could also make the Docker code more resilient to errors.