From d069b7c5152ad5d40f4b46b072dc8626b20c08d8 Mon Sep 17 00:00:00 2001 From: roberChen Date: Thu, 25 Mar 2021 15:32:44 +0800 Subject: [PATCH] fix(member): use client/orm insteal of adapter/orm - to avoid type check bug when comparing error, use newer api instead of old adapter --- commands/install.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/commands/install.go b/commands/install.go index d38d1074..2b53694c 100644 --- a/commands/install.go +++ b/commands/install.go @@ -1,13 +1,14 @@ package commands import ( + "errors" "fmt" "os" "time" "flag" - "github.com/beego/beego/v2/adapter/orm" + "github.com/beego/beego/v2/client/orm" "github.com/beego/beego/v2/core/logs" "github.com/mindoc-org/mindoc/conf" "github.com/mindoc-org/mindoc/models" @@ -101,7 +102,7 @@ func initialization() { } member, err := models.NewMember().FindByFieldFirst("account", "admin") - if err == orm.ErrNoRows { + if errors.Is(err, orm.ErrNoRows) { // create admin user logs.Info("creating admin user") @@ -139,6 +140,8 @@ func initialization() { if err := book.Insert(); err != nil { panic("初始化项目失败 -> " + err.Error()) } + } else if err != nil { + panic(fmt.Errorf("occur errors when initialize: %s", err)) } if !models.NewItemsets().Exist(1) {