Skip to content

Commit

Permalink
fix: panic when requesting dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Benedikt Bongartz <[email protected]>
  • Loading branch information
frzifus committed Aug 28, 2024
1 parent fa1db5d commit 18177c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/tempo-query/tempo/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ func tlsCipherSuites() map[string]uint16 {
}

func (b *Backend) GetDependencies(context.Context, *storage_v1.GetDependenciesRequest) (*storage_v1.GetDependenciesResponse, error) {
return nil, nil
return &storage_v1.GetDependenciesResponse{}, nil
}

func (b *Backend) apiSchema() string {
Expand Down

0 comments on commit 18177c5

Please sign in to comment.