Replies: 1 comment
-
Not sure if that really is "the solution". if you have parallel running stuff and the only difference between working and failure are some seconds in startup time, it doesn't sound very reliable anyway. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
hi,
i had the same error and came across this issue here #3191
I was able to find the error for myself, it was due to a chained service. my service ran "borg prune --stats..." first before the backup started, the parameter "--stats" delayed the process a few seconds even though the systemd had already started the borg create process, so that was it repo always locked. the solution, just remove the "--stats" from the borg prune before running borg create. you could also set your own delay between the steps so that the locking doesn't get in the way.
Beta Was this translation helpful? Give feedback.
All reactions