NewVersionedReaderWriter creates a client to perform versioned requests. Note that write requests are best-effort for now. We need to update the SDK to make use of the precondition headers. https://github.com/grafana/tempo/issues/2705
(cfg *Config)
| 70 | // best-effort for now. We need to update the SDK to make use of the precondition headers. |
| 71 | // https://github.com/grafana/tempo/issues/2705 |
| 72 | func NewVersionedReaderWriter(cfg *Config) (backend.VersionedReaderWriter, error) { |
| 73 | return internalNew(cfg, true) |
| 74 | } |
| 75 | |
| 76 | func internalNew(cfg *Config, confirm bool) (*Azure, error) { |
| 77 | ctx := context.Background() |
no test coverage detected