MCPcopy
hub / github.com/grafana/tempo / getBlobClient

Function getBlobClient

tempodb/backend/azure/azure_helpers.go:133–140  ·  view source on GitHub ↗
(ctx context.Context, conf *Config, blobName string)

Source from the content-addressed store, hash-verified

131}
132
133func getBlobClient(ctx context.Context, conf *Config, blobName string) (*blob.Client, error) {
134 c, err := getContainerClient(ctx, conf, false)
135 if err != nil {
136 return nil, err
137 }
138
139 return c.NewBlobClient(blobName), nil
140}
141
142func CreateContainer(ctx context.Context, conf *Config) (*container.Client, error) {
143 c, err := getContainerClient(ctx, conf, false)

Callers 2

getAttributesMethod · 0.85
DeleteMethod · 0.85

Calls 1

getContainerClientFunction · 0.85

Tested by

no test coverage detected