Commit cff1c370 by Torkel Ödegaard

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

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