(t testing.TB, cfg *tempodb.Config, endpoint string)
| 385 | } |
| 386 | |
| 387 | func setupBackendWithEndpoint(t testing.TB, cfg *tempodb.Config, endpoint string) tempodb.Writer { |
| 388 | _, w := setupBackendReaderWriterWithEndpoint(t, cfg, endpoint) |
| 389 | return w |
| 390 | } |
| 391 | |
| 392 | func setupBackendReaderWriterWithEndpoint(t testing.TB, cfg *tempodb.Config, endpoint string) (tempodb.Reader, tempodb.Writer) { |
| 393 | cfg.Block = &common.BlockConfig{ |
no test coverage detected