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:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-02-11 21:36:15 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-02-11 21:36:15 +0300
commit8166163d39f1f972b2bea2817bdc78cc0777faa3 (patch)
treefa41836f32a4368eaf1b1e8c15c6e029a76ee496 /app.go
parent3732867a8f79171e2d5aefb8ceaa4b887fbbaf72 (diff)
Move most of configuration to appConfig
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 ebc0f578..04f71949 100644
--- a/app.go
+++ b/app.go
@@ -120,7 +120,7 @@ func (a *theApp) Run() {
}()
}
- go watchDomains(a.UpdateDomains, time.Second)
+ go watchDomains(a.Domain, a.UpdateDomains, time.Second)
wg.Wait()
}