Commit 276a5e6e by Torkel Ödegaard

fix: test data api route used old name for test data datasource, fixes #12773

parent f1f04007
...@@ -99,7 +99,7 @@ func GetTestDataRandomWalk(c *m.ReqContext) Response { ...@@ -99,7 +99,7 @@ func GetTestDataRandomWalk(c *m.ReqContext) Response {
timeRange := tsdb.NewTimeRange(from, to) timeRange := tsdb.NewTimeRange(from, to)
request := &tsdb.TsdbQuery{TimeRange: timeRange} request := &tsdb.TsdbQuery{TimeRange: timeRange}
dsInfo := &m.DataSource{Type: "grafana-testdata-datasource"} dsInfo := &m.DataSource{Type: "testdata"}
request.Queries = append(request.Queries, &tsdb.Query{ request.Queries = append(request.Queries, &tsdb.Query{
RefId: "A", RefId: "A",
IntervalMs: intervalMs, IntervalMs: intervalMs,
......
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