Skip to content

Commit

Permalink
cli: adjust error of upload-bin command
Browse files Browse the repository at this point in the history
Miscalculation leads to negative values in errors:
```
2024-10-17 11:26:56.790	failed to fetch the latest missing block index
 from container: search of index files failed for batch with indexes
 from -260000 to -250000: error during object IDs iteration: context
 deadline exceeded
```

Close #3621

Signed-off-by: Ekaterina Pavlova <[email protected]>
  • Loading branch information
AliceInHunterland committed Oct 17, 2024
1 parent 0da1cc9 commit 7df993b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/util/uploader.go
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ func fetchLatestMissingBlockIndex(ctx context.Context, p *pool.Pool, containerID

for i := len(results) - 1; i >= 0; i-- {
if results[i].err != nil {
return 0, fmt.Errorf("search of index files failed for batch with indexes from %d to %d: %w", batch*searchBatchSize, (batch+1)*searchBatchSize, results[i].err)
return 0, fmt.Errorf("search of index files failed for batch with indexes from %d to %d: %w", results[i].startIndex, results[i].startIndex+searchBatchSize, results[i].err)
}
if results[i].numOIDs < searchBatchSize {
emptyBatchFound = true
Expand Down

0 comments on commit 7df993b

Please sign in to comment.