Commit 9363c40a by Torkel Ödegaard

Merge branch 'master' of github.com:grafana/grafana

parents b6ce16eb 2782ad09
...@@ -69,10 +69,13 @@ func (tw *DatasourcePluginWrapper) Query(ctx context.Context, ds *models.DataSou ...@@ -69,10 +69,13 @@ func (tw *DatasourcePluginWrapper) Query(ctx context.Context, ds *models.DataSou
for _, r := range pbres.Results { for _, r := range pbres.Results {
qr := &tsdb.QueryResult{ qr := &tsdb.QueryResult{
RefId: r.RefId, RefId: r.RefId,
Series: []*tsdb.TimeSeries{}, Series: []*tsdb.TimeSeries{},
Error: errors.New(r.Error), }
ErrorString: r.Error,
if r.Error != "" {
qr.Error = errors.New(r.Error)
qr.ErrorString = r.Error
} }
for _, s := range r.GetSeries() { for _, s := range r.GetSeries() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment