1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Add build tag enable prompt

This commit is contained in:
Unknown
2014-04-19 22:13:22 -04:00
parent 0e41726ece
commit 8bed017557
5 changed files with 13 additions and 3 deletions

View File

@@ -174,6 +174,12 @@ func newLogService() {
func newCacheService() {
CacheAdapter = Cfg.MustValue("cache", "ADAPTER", "memory")
if cache.EnableRedis {
log.Info("Redis Enabled")
}
if cache.EnableMemcache {
log.Info("Memcache Enabled")
}
switch CacheAdapter {
case "memory":

View File

@@ -201,6 +201,7 @@ func RepoAssignment(redirect bool, args ...bool) martini.Handler {
// repo is bare and display enable
if displayBare && ctx.Repo.Repository.IsBare {
log.Debug("Bare repository: %s", ctx.Repo.RepoLink)
ctx.HTML(200, "repo/single_bare")
return
}