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
path: root/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'app.go')
-rw-r--r--app.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/app.go b/app.go
index 09bf039e..ddbe8457 100644
--- a/app.go
+++ b/app.go
@@ -53,7 +53,7 @@ type theApp struct {
}
func (a *theApp) isReady() bool {
- return a.domains.Ready()
+ return a.domains.IsReady()
}
func (a *theApp) ServeTLS(ch *tls.ClientHelloInfo) (*tls.Certificate, error) {
@@ -348,7 +348,7 @@ func (a *theApp) Run() {
a.listenMetricsFD(&wg, a.ListenMetrics)
}
- a.domains.Watch(a.Domain)
+ a.domains.Start(a.Domain)
wg.Wait()
}