Do not ignore username option for mqtt output

This commit is contained in:
Manuel Sangoi 2016-03-03 14:14:50 +01:00 committed by Cameron Sparr
parent 8464be691e
commit e5482a5725
2 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@
- [#722](https://github.com/influxdata/telegraf/pull/722): Librato output plugin fixes. Thanks @chrusty!
- [#745](https://github.com/influxdata/telegraf/issues/745): Fix Telegraf toml parse panic on large config files. Thanks @titilambert!
- [#781](https://github.com/influxdata/telegraf/pull/781): Fix mqtt_consumer username not being set. Thanks @chaton78!
- [#786](https://github.com/influxdata/telegraf/pull/786): Fix mqtt output username not being set. Thanks @msangoi!
## v0.10.4.1

View File

@ -172,7 +172,7 @@ func (m *MQTT) createOpts() (*paho.ClientOptions, error) {
}
user := m.Username
if user == "" {
if user != "" {
opts.SetUsername(user)
}
password := m.Password