This commit is contained in:
Bel LaPointe
2020-07-23 16:46:04 -06:00
parent bed265a228
commit ef27716695
2 changed files with 8 additions and 8 deletions

View File

@@ -32,7 +32,7 @@ func (bdb *BoltDB) count(ctx context.Context, namespace string, filter interface
ch, err := bdb.Find(ctx, namespace, filter)
n := 0
for _ = range ch {
n += 1
n++
}
return n, err
}