parent
c846610391
commit
c78c7f994c
|
@ -4,6 +4,7 @@
|
|||
|
||||
### Bugfixes
|
||||
- [#968](https://github.com/influxdata/telegraf/issues/968): Processes plugin gets unknown state when spaces are in (command name)
|
||||
- [#969](https://github.com/influxdata/telegraf/issues/968): ipmi_sensors: allow : in password. Thanks @awaw!
|
||||
|
||||
## v0.12.0 [2016-04-05]
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ func NewConnection(server string) *Connection {
|
|||
if inx1 > 0 {
|
||||
security := server[0:inx1]
|
||||
connstr = server[inx1+1 : len(server)]
|
||||
up := strings.Split(security, ":")
|
||||
up := strings.SplitN(security, ":", 2)
|
||||
conn.Username = up[0]
|
||||
conn.Password = up[1]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue