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

Function NewNoConfirm

tempodb/backend/s3/s3.go:100–103  ·  view source on GitHub ↗

NewNoConfirm gets the S3 backend without testing it

(cfg *Config)

Source from the content-addressed store, hash-verified

98
99// NewNoConfirm gets the S3 backend without testing it
100func NewNoConfirm(cfg *Config) (backend.RawReader, backend.RawWriter, backend.Compactor, error) {
101 rw, err := internalNew(cfg, false)
102 return rw, rw, rw, err
103}
104
105// New gets the S3 backend
106func New(cfg *Config) (backend.RawReader, backend.RawWriter, backend.Compactor, error) {

Callers 2

TestNilConfigFunction · 0.70
TestListBlocksWithPrefixFunction · 0.70

Calls 1

internalNewFunction · 0.70

Tested by 2

TestNilConfigFunction · 0.56
TestListBlocksWithPrefixFunction · 0.56