Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion store/posixage/internal/flock/flock.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ func tryLock(ctx context.Context, root *os.Root, exclusive bool) (UnlockFunc, er
return nil, err
}
// recovery was successful. Let's try get another lock one last time.
if err := retryLock(ctx, fl, exclusive); err != nil {
err = retryLock(ctx, fl, exclusive)
if err != nil {
return nil, err
}

Expand Down
Loading