Return better error messages on mattermost connect
This commit is contained in:
parent
52fc94c1fe
commit
10dab1366e
|
@ -112,7 +112,10 @@ func (m *MMClient) Login() error {
|
||||||
for {
|
for {
|
||||||
d := b.Duration()
|
d := b.Duration()
|
||||||
// bogus call to get the serverversion
|
// bogus call to get the serverversion
|
||||||
m.Client.GetClientProperties()
|
_, err := m.Client.GetClientProperties()
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("%#v", err.Error())
|
||||||
|
}
|
||||||
if firstConnection && !supportedVersion(m.Client.ServerVersion) {
|
if firstConnection && !supportedVersion(m.Client.ServerVersion) {
|
||||||
return fmt.Errorf("unsupported mattermost version: %s", m.Client.ServerVersion)
|
return fmt.Errorf("unsupported mattermost version: %s", m.Client.ServerVersion)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue