Plugins: Fix bug with copying grafanaData (#64446)

pull/64442/head^2
Stephanie Hingtgen 3 years ago committed by GitHub
parent fbe3bdc8f5
commit 39a4634ae9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      pkg/services/datasources/service/datasource.go
  2. 4
      pkg/services/datasources/service/datasource_test.go

@ -424,10 +424,11 @@ func (s *Service) httpClientOptions(ctx context.Context, ds *datasources.DataSou
if ds.JsonData != nil {
opts.CustomOptions = ds.JsonData.MustMap()
// allow the plugin sdk to get the json data in JSONDataFromHTTPClientOptions
opts.CustomOptions["grafanaData"] = make(map[string]interface{})
deepJsonDataCopy := make(map[string]interface{}, len(opts.CustomOptions))
for k, v := range opts.CustomOptions {
opts.CustomOptions[k] = v
deepJsonDataCopy[k] = v
}
opts.CustomOptions["grafanaData"] = deepJsonDataCopy
}
if ds.BasicAuth {
password, err := s.DecryptedBasicAuthPassword(ctx, ds)

@ -427,6 +427,10 @@ func TestService_GetHttpTransport(t *testing.T) {
require.NotNil(t, rt)
tr := configuredTransport
opts, err := dsService.httpClientOptions(context.Background(), &ds)
require.NoError(t, err)
require.Equal(t, ds.JsonData.MustMap()["grafanaData"], opts.CustomOptions["grafanaData"])
// make sure we can still marshal the JsonData after httpClientOptions (avoid cycles)
_, err = ds.JsonData.MarshalJSON()
require.NoError(t, err)

Loading…
Cancel
Save