[#xx] metabase: Check parameter for CountAliveObjectsInBucket
Some checks failed
DCO action / DCO (pull_request) Failing after 2m3s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m18s
Tests and linters / Run gofumpt (pull_request) Successful in 2m13s
Vulncheck / Vulncheck (pull_request) Successful in 2m29s
Build / Build Components (pull_request) Successful in 2m59s
Tests and linters / gopls check (pull_request) Successful in 3m12s
Tests and linters / Staticcheck (pull_request) Successful in 3m47s
Tests and linters / Lint (pull_request) Successful in 3m56s
Tests and linters / Tests (pull_request) Successful in 6m48s
Tests and linters / Tests with -race (pull_request) Successful in 6m50s
Some checks failed
DCO action / DCO (pull_request) Failing after 2m3s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m18s
Tests and linters / Run gofumpt (pull_request) Successful in 2m13s
Vulncheck / Vulncheck (pull_request) Successful in 2m29s
Build / Build Components (pull_request) Successful in 2m59s
Tests and linters / gopls check (pull_request) Successful in 3m12s
Tests and linters / Staticcheck (pull_request) Successful in 3m47s
Tests and linters / Lint (pull_request) Successful in 3m56s
Tests and linters / Tests (pull_request) Successful in 6m48s
Tests and linters / Tests with -race (pull_request) Successful in 6m50s
Signed-off-by: Anton Nikiforov <an.nikiforov@yadro.com>
This commit is contained in:
parent
f83f7feb8c
commit
d0f1c6d37b
1 changed files with 3 additions and 2 deletions
|
@ -452,10 +452,11 @@ func (db *DB) CountAliveObjectsInBucket(ctx context.Context, prm CountAliveObjec
|
|||
return 0, ErrDegradedMode
|
||||
}
|
||||
|
||||
cidRaw := prm.BucketName[1:bucketKeySize]
|
||||
if cidRaw == nil {
|
||||
if prm.BucketName == nil {
|
||||
return 0, nil
|
||||
}
|
||||
|
||||
cidRaw := prm.BucketName[1:bucketKeySize]
|
||||
var count uint64
|
||||
err := db.boltDB.View(func(tx *bbolt.Tx) error {
|
||||
bkt := tx.Bucket(prm.BucketName)
|
||||
|
|
Loading…
Reference in a new issue