Plugins: Plugin Store API returns DTO model (#41340)
* toying around * fix refs * remove unused fields * go further * add context * ensure streaming handler is set
This commit is contained in:
@@ -69,8 +69,8 @@ func (p *DataSourceProxyService) ProxyDatasourceRequestWithID(c *models.ReqConte
|
||||
}
|
||||
|
||||
// find plugin
|
||||
plugin := p.pluginStore.Plugin(ds.Type)
|
||||
if plugin == nil {
|
||||
plugin, exists := p.pluginStore.Plugin(c.Req.Context(), ds.Type)
|
||||
if !exists {
|
||||
c.JsonApiErr(http.StatusNotFound, "Unable to find datasource plugin", err)
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user