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 = {}; 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) {