From 301482b8067eeb64996bd138ce3111a236717c5b Mon Sep 17 00:00:00 2001 From: billettc Date: Mon, 30 May 2022 12:51:41 -0400 Subject: [PATCH] squash is no more deleting partial files --- orchestrator/squasher.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/orchestrator/squasher.go b/orchestrator/squasher.go index 1f73f5aee..bcef73583 100644 --- a/orchestrator/squasher.go +++ b/orchestrator/squasher.go @@ -149,10 +149,10 @@ func squash(ctx context.Context, squashable *Squashable, blockRange *block.Range return fmt.Errorf("merging: %s", err) } - err = partialBuilder.DeletePartialFile(ctx) - if err != nil { - zlog.Warn("deleting partial file", zap.Error(err)) - } + //err = partialBuilder.DeletePartialFile(ctx) + //if err != nil { + // zlog.Warn("deleting partial file", zap.Error(err)) + //} err = squashable.builder.WriteState(ctx) if err != nil {