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:
authorfeistel <6742251-feistel@users.noreply.gitlab.com>2021-08-19 16:16:00 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2021-08-20 04:39:10 +0300
commitb16bf8296b4d3319b32e74046b1aae3e21e2a947 (patch)
treeddaea2d5698e67330e0a06bb6b19fd3c1b07aa87 /app.go
parent5857561e7f0fa26211fa36919323fe56269fdc94 (diff)
refactor: remove IsReady from the Source interface as this is always true
Diffstat (limited to 'app.go')
-rw-r--r--app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.go b/app.go
index 7fec64c5..18fe20ae 100644
--- a/app.go
+++ b/app.go
@@ -59,7 +59,7 @@ type theApp struct {
}
func (a *theApp) isReady() bool {
- return a.domains.IsReady()
+ return true
}
func (a *theApp) ServeTLS(ch *cryptotls.ClientHelloInfo) (*cryptotls.Certificate, error) {