Make build functions more error-resilient #149
Labels
No Label
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 Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: vieter-v/vieter#149
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
Currently the
build_repo
function 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.