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

Method writeAll

tempodb/backend/azure/azure.go:397–404  ·  view source on GitHub ↗
(ctx context.Context, name string, b []byte)

Source from the content-addressed store, hash-verified

395}
396
397func (rw *Azure) writeAll(ctx context.Context, name string, b []byte) error {
398 err := rw.writer(ctx, bytes.NewReader(b), name)
399 if err != nil {
400 return err
401 }
402
403 return nil
404}
405
406func (rw *Azure) append(ctx context.Context, src []byte, name string) error {
407 appendBlobClient := rw.containerClient.NewBlockBlobClient(name)

Callers 2

MarkBlockCompactedMethod · 0.95
AppendMethod · 0.95

Calls 1

writerMethod · 0.95

Tested by

no test coverage detected