(namespace string)
| 210 | } |
| 211 | |
| 212 | func namespaceLabelsBucketPath(namespace string) [][]byte { |
| 213 | return [][]byte{bucketKeyVersion, []byte(namespace), bucketKeyObjectLabels} |
| 214 | } |
| 215 | |
| 216 | func withNamespacesLabelsBucket(tx *bolt.Tx, namespace string, fn func(bkt *bolt.Bucket) error) error { |
| 217 | bkt, err := createBucketIfNotExists(tx, namespaceLabelsBucketPath(namespace)...) |
no outgoing calls
no test coverage detected
searching dependent graphs…