Minor fixes; Update frontend

This commit is contained in:
Lou Knauer
2022-03-08 10:33:56 +01:00
parent 8e8b205da8
commit 08d760361d
5 changed files with 5 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ var db *sqlx.DB
var lookupConfigStmt *sqlx.Stmt
var lock sync.RWMutex
var uiDefaults map[string]interface{}
var cache lrucache.Cache = *lrucache.New(1024)
var cache *lrucache.Cache = lrucache.New(1024)
var Clusters []*model.Cluster
func Init(usersdb *sqlx.DB, authEnabled bool, uiConfig map[string]interface{}, jobArchive string) error {