Skip to content

Commit dc97ff0

Browse files
committed
fixup! checkout.c: enable fscache for checkout again
Back when this commit was crafted, parallel checkout did not exist yet. But now it does. And it needs the same handling in the sequential case (i.e. when it is not actually parallel because of not reaching the threshold to actually need to fan out). This fixes #3904 Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 6879b91 commit dc97ff0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

parallel-checkout.c

+1
Original file line numberDiff line numberDiff line change
@@ -633,6 +633,7 @@ static void write_items_sequentially(struct checkout *state)
633633
{
634634
size_t i;
635635

636+
flush_fscache();
636637
for (i = 0; i < parallel_checkout.nr; i++) {
637638
struct parallel_checkout_item *pc_item = &parallel_checkout.items[i];
638639
write_pc_item(pc_item, state);

0 commit comments

Comments
 (0)