webconsole: typo fix accessable -> accessible

This commit is contained in:
Yousong Zhou
2020-03-23 16:29:56 +08:00
parent f7a5dd2032
commit 1d5d2276d6
+1 -1
View File
@@ -94,7 +94,7 @@ func NewSSHtoolSolCommand(ctx context.Context, userCred mcclient.TokenCredential
}
conn, err := net.DialTimeout("tcp", fmt.Sprintf("%s:%d", ip, port), time.Second*2)
if err != nil {
return nil, fmt.Errorf("IPAddress %s:%d not accessable", ip, port)
return nil, fmt.Errorf("IPAddress %s:%d not accessible", ip, port)
}
defer conn.Close()