Exported function returning value of unexported type RVV-B0011
Anti-pattern
Critical
1 occurrence in this check
exported func NewCollectBucketStatsTask returns unexported type *buckets.collectBucketStatsTask, which can be annoying to use
71}
72
73// NewCollectBucketStatsTask creates task to collect bucket stats.
74func NewCollectBucketStatsTask(minDegree int, regionIDs ...uint64) *collectBucketStatsTask {75	return &collectBucketStatsTask{
76		minDegree: minDegree,
77		regionIDs: regionIDs,