Commit 1994b767 by Torkel Ödegaard Committed by Daniel Lee

fix: InfluxDB direct access with normal inflxudb credentials was not sent correctly, fixes #8789

parent eca11e86
...@@ -213,8 +213,8 @@ export default class InfluxDatasource { ...@@ -213,8 +213,8 @@ export default class InfluxDatasource {
var params: any = {}; var params: any = {};
if (self.username) { if (self.username) {
params.username = self.username; params.u = self.username;
params.password = self.password; params.p = self.password;
} }
if (self.database) { if (self.database) {
......
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