We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e67cfb commit aea564eCopy full SHA for aea564e
pkg/quickwit/quickwit.go
@@ -45,10 +45,11 @@ func NewQuickwitDatasource(settings backend.DataSourceInstanceSettings) (instanc
45
if err != nil {
46
return nil, fmt.Errorf("error getting http options: %w", err)
47
}
48
+ httpCliOpts.ForwardHTTPHeaders = true
49
50
// Set SigV4 service namespace
51
if httpCliOpts.SigV4 != nil {
- httpCliOpts.SigV4.Service = "quicwkit"
52
+ httpCliOpts.SigV4.Service = "quickwit"
53
54
55
httpCli, err := httpclient.New(httpCliOpts)
0 commit comments