Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Martinez <jmartinez@gitlab.com>2021-01-27 01:10:15 +0300
committerJaime Martinez <jmartinez@gitlab.com>2021-01-29 03:42:23 +0300
commitc6553abc1709446630840e77aae4f37a9270d3c8 (patch)
tree5ccb6bf7f22d263fa805781109685ac5207497d0
parentef0c3bcf17882226fc66fe08caa71e0eb7517c3d (diff)
Apply 1 suggestion(s) to 1 file(s)
-rw-r--r--internal/source/domains.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/source/domains.go b/internal/source/domains.go
index 6365c2e8..c15b9f49 100644
--- a/internal/source/domains.go
+++ b/internal/source/domains.go
@@ -101,7 +101,7 @@ func (d *Domains) setGitLabClient(config Config) error {
func (d *Domains) GetDomain(name string) (*domain.Domain, error) {
resolvedDomain, err := d.source(name).GetDomain(name)
if errors.Is(err, client.ErrUnauthorizedAPI) && d.configSource == sourceAuto {
- log.WithError(err).Warn("Pages cannot communicate with an instance of the GitLab API, please sync your gitlab-secrets.json file https://gitlab.com/gitlab-org/gitlab-pages/-/issues/535#workaround ")
+ log.WithError(err).Warn("Pages cannot communicate with an instance of the GitLab API. Please sync your gitlab-secrets.json file https://gitlab.com/gitlab-org/gitlab-pages/-/issues/535#workaround.")
// temporary workaround for https://gitlab.com/gitlab-org/gitlab-pages/-/issues/535
return d.disk.GetDomain(name)
}