diff --git a/tempodb/backend/gcs/gcs.go b/tempodb/backend/gcs/gcs.go index 11339d8202d..1a616f306db 100644 --- a/tempodb/backend/gcs/gcs.go +++ b/tempodb/backend/gcs/gcs.go @@ -195,6 +195,9 @@ func (rw *readerWriter) ListBlocks(ctx context.Context, keypath backend.KeyPath) if len(prefix) > 0 { prefix = prefix + "/" } + + // The "n" delimter here is used to identify files that end with "n", which + // will yield json files. iter := rw.bucket.Objects(ctx, &storage.Query{ Prefix: prefix, Delimiter: "n",