Skip to content

Commit

Permalink
Merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahzinger committed Nov 21, 2023
2 parents ca71e2d + a1b7ef7 commit d5141c2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pkg/opensearch/response_parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import (
simplejson "github.com/bitly/go-simplejson"
"github.com/grafana/grafana-plugin-sdk-go/backend"
"github.com/grafana/grafana-plugin-sdk-go/data"
"github.com/grafana/opensearch-datasource/pkg/opensearch/client"
es "github.com/grafana/opensearch-datasource/pkg/opensearch/client"
utils "github.com/grafana/opensearch-datasource/pkg/utils"
)
Expand Down Expand Up @@ -46,11 +45,11 @@ type responseParser struct {
Responses []*es.SearchResponse
Targets []*Query
DebugInfo *es.SearchDebugInfo
ConfiguredFields client.ConfiguredFields
ConfiguredFields es.ConfiguredFields
DSSettings *backend.DataSourceInstanceSettings
}

func newResponseParser(responses []*es.SearchResponse, targets []*Query, debugInfo *es.SearchDebugInfo, configuredFields client.ConfiguredFields, dsSettings *backend.DataSourceInstanceSettings) *responseParser {
func newResponseParser(responses []*es.SearchResponse, targets []*Query, debugInfo *es.SearchDebugInfo, configuredFields es.ConfiguredFields, dsSettings *backend.DataSourceInstanceSettings) *responseParser {
return &responseParser{
Responses: responses,
Targets: targets,
Expand Down

0 comments on commit d5141c2

Please sign in to comment.