summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/store/store.go b/store/store.go
index e64089068..0b5c9df5f 100644
--- a/store/store.go
+++ b/store/store.go
@@ -6,8 +6,6 @@ package store
import (
"time"
- l4g "github.com/alecthomas/log4go"
-
"github.com/mattermost/mattermost-server/model"
)
@@ -32,7 +30,7 @@ func Do(f func(result *StoreResult)) StoreChannel {
func Must(sc StoreChannel) interface{} {
r := <-sc
if r.Err != nil {
- l4g.Close()
+
time.Sleep(time.Second)
panic(r.Err)
}