X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0bb53c1cbcbcb8b3be50e6ecf3fdf0bb7cbd96b5..9696c090dbf9dd777fc0a2c8925c67093503d5dc:/lib/service/tls.go diff --git a/lib/service/tls.go b/lib/service/tls.go index 5f14bc5e82..c6307b76ab 100644 --- a/lib/service/tls.go +++ b/lib/service/tls.go @@ -13,7 +13,7 @@ import ( "strings" "syscall" - "git.curoverse.com/arvados.git/sdk/go/arvados" + "git.arvados.org/arvados.git/sdk/go/arvados" "github.com/sirupsen/logrus" ) @@ -23,7 +23,7 @@ func tlsConfigWithCertUpdater(cluster *arvados.Cluster, logger logrus.FieldLogge key, cert := cluster.TLS.Key, cluster.TLS.Certificate if !strings.HasPrefix(key, "file://") || !strings.HasPrefix(cert, "file://") { - return nil, errors.New("cannot use TLS certificate: TLS.Key and TLS.Certificate must be specified as file://...") + return nil, errors.New("cannot use TLS certificate: TLS.Key and TLS.Certificate must be specified with a 'file://' prefix") } key, cert = key[7:], cert[7:]