summaryrefslogtreecommitdiff
path: root/system/db/init.go
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-10-28 13:17:17 -0700
committerSteve Manuel <nilslice@gmail.com>2016-10-28 13:17:17 -0700
commit763a6f96821be3c6fc3874f3fd9a5bd0316b2bf4 (patch)
tree9f23f13d0428d0fb4becd526821cbf2fe59a30d9 /system/db/init.go
parent3eb0378414ea769df0724805129dd1028af7abe7 (diff)
attempt fix for bolt err
Diffstat (limited to 'system/db/init.go')
-rw-r--r--system/db/init.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/system/db/init.go b/system/db/init.go
index 39840da..7f8bce9 100644
--- a/system/db/init.go
+++ b/system/db/init.go
@@ -79,13 +79,13 @@ func Init() {
}
// sort all content into type_sorted buckets
- if SystemInitComplete() {
- go func() {
- for t := range content.Types {
- SortContent(t)
- }
- }()
- }
+ // if SystemInitComplete() {
+ // go func() {
+ // for t := range content.Types {
+ // SortContent(t)
+ // }
+ // }()
+ // }
}