Skip to content

Commit

Permalink
Fix Test
Browse files Browse the repository at this point in the history
Signed-off-by: Mahad Zaryab <[email protected]>
  • Loading branch information
mahadzaryab1 committed Oct 6, 2024
1 parent aec39e5 commit 4663d80
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugin/storage/es/spanstore/reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const (
archiveReadIndexSuffix = archiveIndexSuffix + "-read"
archiveWriteIndexSuffix = archiveIndexSuffix + "-write"
traceIDAggregation = "traceIDs"
indexPrefixSeparator = "-"

traceIDField = "traceID"
durationField = "duration"
Expand Down Expand Up @@ -123,7 +124,7 @@ func NewSpanReader(p SpanReaderParams) *SpanReader {
}

p.SpanIndex.Prefix = p.SpanIndex.FullIndexName(spanIndexBaseName)
p.ServiceIndex.Prefix = p.SpanIndex.FullIndexName(spanIndexBaseName)
p.ServiceIndex.Prefix = p.ServiceIndex.FullIndexName(serviceIndexBaseName)

return &SpanReader{
client: p.Client,
Expand Down

0 comments on commit 4663d80

Please sign in to comment.