From 380d1125995056be293b59e91c19dcff3e4a1e5a Mon Sep 17 00:00:00 2001 From: Ekaterina Pavlova Date: Fri, 15 Nov 2024 11:35:39 +0300 Subject: [PATCH] cli: fix stopping of uploadIndexFiles in `upload-bin` The expected count of index files should be counted based on the already uploaded object number. Close #3669 Signed-off-by: Ekaterina Pavlova --- cli/util/upload_bin.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/util/upload_bin.go b/cli/util/upload_bin.go index 390f670ed..5e6092bff 100644 --- a/cli/util/upload_bin.go +++ b/cli/util/upload_bin.go @@ -148,7 +148,7 @@ func uploadBin(ctx *cli.Context) error { } } - err = uploadIndexFiles(ctx, p, containerID, acc, signer, uint(currentBlockHeight), attr, homomorphicHashingDisabled, maxParallelSearches, maxRetries) + err = uploadIndexFiles(ctx, p, containerID, acc, signer, uint(oldestMissingBlockIndex), attr, homomorphicHashingDisabled, maxParallelSearches, maxRetries) if err != nil { return cli.Exit(fmt.Errorf("failed to upload index files: %w", err), 1) } @@ -325,7 +325,7 @@ func uploadBlocks(ctx *cli.Context, p *pool.Pool, rpc *rpcclient.Client, signer } // uploadIndexFiles uploads missing index files to the container. -func uploadIndexFiles(ctx *cli.Context, p *pool.Pool, containerID cid.ID, account *wallet.Account, signer user.Signer, currentHeight uint, blockAttributeKey string, homomorphicHashingDisabled bool, maxParallelSearches, maxRetries int) error { +func uploadIndexFiles(ctx *cli.Context, p *pool.Pool, containerID cid.ID, account *wallet.Account, signer user.Signer, oldestMissingBlockIndex uint, blockAttributeKey string, homomorphicHashingDisabled bool, maxParallelSearches, maxRetries int) error { attributeKey := ctx.String("index-attribute") indexFileSize := ctx.Uint("index-file-size") fmt.Fprintln(ctx.App.Writer, "Uploading index files...") @@ -346,7 +346,7 @@ func uploadIndexFiles(ctx *cli.Context, p *pool.Pool, containerID cid.ID, accoun } existingIndexCount := uint(len(objectIDs)) - expectedIndexCount := currentHeight / indexFileSize + expectedIndexCount := (oldestMissingBlockIndex - 1) / indexFileSize if existingIndexCount >= expectedIndexCount { fmt.Fprintf(ctx.App.Writer, "Index files are up to date. Existing: %d, expected: %d\n", existingIndexCount, expectedIndexCount) return nil