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

This commit is contained in:
Torkel Ödegaard 2017-07-05 21:43:47 +02:00 committed by Daniel Lee
parent eca11e862e
commit 1994b767d3

View File

@ -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) {