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 14ea5a8 commit 2f1028a
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 @@ -255,7 +255,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)

Check warning on line 258 in cli/util/uploader.go

View check run for this annotation

Codecov / codecov/patch

cli/util/uploader.go#L258

Added line #L258 was not covered by tests
}
if results[i].numOIDs < searchBatchSize {
emptyBatchFound = true
Expand Down

0 comments on commit 2f1028a

Please sign in to comment.