From b6eb040045fcfeb39dda4fcd440d2be184c8e715 Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Sat, 29 Oct 2016 01:33:33 -0700 Subject: adding db/analytics init back in after reverting for debug --- system/api/analytics/init.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'system/api/analytics/init.go') diff --git a/system/api/analytics/init.go b/system/api/analytics/init.go index c04a7f2..c351bed 100644 --- a/system/api/analytics/init.go +++ b/system/api/analytics/init.go @@ -4,7 +4,6 @@ package analytics import ( - "fmt" "log" "net/http" "strings" @@ -55,13 +54,12 @@ func Close() { // Init creates a db connection, should run an initial prune of old data, and // sets up the queue/batching channel func Init() { - store, err := bolt.Open("analytics.db", 0666, nil) + var err error + store, err = bolt.Open("analytics.db", 0666, nil) if err != nil { log.Fatalln(err) } - fmt.Println("analytics", store) - recordChan = make(chan apiRequest, 1024*128) go serve() -- cgit v1.2.3