Skip to content

Commit

Permalink
finishing step
Browse files Browse the repository at this point in the history
Signed-off-by: Manik2708 <[email protected]>
  • Loading branch information
Manik2708 committed Jan 7, 2025
1 parent a8d7908 commit 2e42c86
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugin/storage/integration/es_storage_integration.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,9 @@ func (s *ESStorageIntegration) initSpanstore(t *testing.T, allTagsAsFields bool)
s.ArchiveSpanWriter, err = f.CreateArchiveSpanWriter()
require.NoError(t, err)

s.DependencyReader, err = f.CreateDependencyReader()
dependencyReader, err := f.CreateDependencyReader()
require.NoError(t, err)
s.DependencyReader = v1adapter.NewDependencyReader(dependencyReader)
s.DependencyWriter = s.DependencyReader.(dependencystore.Writer)

s.SamplingStore, err = f.CreateSamplingStore(1)
Expand Down

0 comments on commit 2e42c86

Please sign in to comment.