From b16bf8296b4d3319b32e74046b1aae3e21e2a947 Mon Sep 17 00:00:00 2001 From: feistel <6742251-feistel@users.noreply.gitlab.com> Date: Thu, 19 Aug 2021 13:16:00 +0000 Subject: refactor: remove IsReady from the Source interface as this is always true --- app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app.go') 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) { -- cgit v1.2.3