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>2020-08-24 08:49:32 +0300
committerJaime Martinez <jmartinez@gitlab.com>2020-08-27 02:35:55 +0300
commit6209353ff0506cd34431793512f873280483c189 (patch)
tree3f9bce35efd71ce3e10f2ba4d5026ea3fb9df42e
parent9a1ff6afd7aca2c1941792749550bf5632bf3c08 (diff)
Update to-dos
-rw-r--r--internal/source/domains.go1
-rw-r--r--internal/source/gitlab/gitlab_poll.go2
2 files changed, 1 insertions, 2 deletions
diff --git a/internal/source/domains.go b/internal/source/domains.go
index a3b3d9c5..2a7a317c 100644
--- a/internal/source/domains.go
+++ b/internal/source/domains.go
@@ -55,7 +55,6 @@ func (d *Domains) setConfigSource(config Config) error {
// attach gitlab by default when source is not disk (auto, gitlab)
switch config.DomainConfigSource() {
case "gitlab":
- // TODO: https://gitlab.com/gitlab-org/gitlab/-/issues/218357
d.configSource = sourceGitlab
return d.setGitLabClient(config)
case "auto":
diff --git a/internal/source/gitlab/gitlab_poll.go b/internal/source/gitlab/gitlab_poll.go
index bc1611ef..0284449a 100644
--- a/internal/source/gitlab/gitlab_poll.go
+++ b/internal/source/gitlab/gitlab_poll.go
@@ -14,7 +14,7 @@ const (
// Poll tries to call the /internal/pages/status API endpoint once plus
// for `maxElapsedTime`
-// TODO: Remove in https://gitlab.com/gitlab-org/gitlab/-/issues/218357
+// TODO: Remove in https://gitlab.com/gitlab-org/gitlab-pages/-/issues/449
func (g *Gitlab) poll(interval, maxElapsedTime time.Duration) {
backOff := backoff.NewExponentialBackOff()
backOff.InitialInterval = interval