1
0
mirror of https://github.com/lxc/incus.git synced 2026-02-05 09:46:19 +01:00

client/connection: Correct HTTPs to HTTPS in ConnectPublicLXD

Signed-off-by: Thomas Parrott <thomas.parrott@canonical.com>
This commit is contained in:
Thomas Parrott
2021-04-30 09:49:46 +01:00
parent 9a1d6a1b95
commit fa9a42a818

View File

@@ -172,7 +172,7 @@ func ConnectLXDUnix(path string, args *ConnectionArgs) (InstanceServer, error) {
//
// Unless the remote server is trusted by the system CA, the remote certificate must be provided (TLSServerCert).
func ConnectPublicLXD(url string, args *ConnectionArgs) (ImageServer, error) {
logger.Debugf("Connecting to a remote public LXD over HTTPs")
logger.Debugf("Connecting to a remote public LXD over HTTPS")
// Cleanup URL
url = strings.TrimSuffix(url, "/")