From 33ba88df9cbf1b8ca086e02e6cb09918279a4ca4 Mon Sep 17 00:00:00 2001 From: chrislu Date: Tue, 28 Jan 2025 23:59:39 -0800 Subject: [PATCH] fix from ensure() before actual deletion, within the b2 client library fix https://github.com/seaweedfs/seaweedfs/issues/6483 --- weed/replication/sink/b2sink/b2_sink.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/weed/replication/sink/b2sink/b2_sink.go b/weed/replication/sink/b2sink/b2_sink.go index de7899c60..28a10b195 100644 --- a/weed/replication/sink/b2sink/b2_sink.go +++ b/weed/replication/sink/b2sink/b2_sink.go @@ -79,7 +79,14 @@ func (g *B2Sink) DeleteEntry(key string, isDirectory, deleteIncludeChunks bool, targetObject := bucket.Object(key) - return targetObject.Delete(context.Background()) + err = targetObject.Delete(context.Background()) + if err != nil { + // b2_download_file_by_name: 404: File with such name does not exist. + if strings.Contains(err.Error(), ": 404:") { + return nil + } + } + return err }