diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-06 15:11:11 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-06 15:11:11 -0800 |
commit | 64050ef8065bccdef0aab1748040995c637fe9ed (patch) | |
tree | 254f75834f2cb787179f7880b0063e667d8ad234 /system/api/analytics/init.go | |
parent | 650b67e118c6672c65f1b0fab684695284127e9b (diff) |
missed a rename
Diffstat (limited to 'system/api/analytics/init.go')
-rw-r--r-- | system/api/analytics/init.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/api/analytics/init.go b/system/api/analytics/init.go index 7cb35af..6558adf 100644 --- a/system/api/analytics/init.go +++ b/system/api/analytics/init.go @@ -138,7 +138,7 @@ func ChartData() (map[string]interface{}, error) { // get api request analytics from db var requests = []apiRequest{} err := store.View(func(tx *bolt.Tx) error { - b := tx.Bucket([]byte("requests")) + b := tx.Bucket([]byte("__requests")) err := b.ForEach(func(k, v []byte) error { var r apiRequest |