From 623628ded663f113099b66146b9cb2bd83b7a53a Mon Sep 17 00:00:00 2001 From: chao <48119764+withchao@users.noreply.github.com> Date: Fri, 10 Jan 2025 11:15:34 +0800 Subject: [PATCH] fix: seq conversion failed without exiting (#3052) * pb * fix: Modifying other fields while setting IsPrivateChat does not take effect * fix: quote message error revoke * refactoring scheduled tasks * refactoring scheduled tasks * refactoring scheduled tasks * refactoring scheduled tasks * refactoring scheduled tasks * refactoring scheduled tasks * upgrading pkg tools * fix * fix * optimize log output * feat: support GetLastMessage * feat: support GetLastMessage * feat: s3 switch * feat: s3 switch * fix: GetUsersOnline * feat: SendBusinessNotification supported configuration parameters * feat: SendBusinessNotification supported configuration parameters * feat: SendBusinessNotification supported configuration parameters * feat: seq conversion failed without exiting --- tools/seq/main.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/seq/main.go b/tools/seq/main.go index 16da9f156..ef2875fe1 100644 --- a/tools/seq/main.go +++ b/tools/seq/main.go @@ -3,8 +3,10 @@ package main import ( "flag" "fmt" - "github.com/openimsdk/open-im-server/v3/tools/seq/internal" + "os" "time" + + "github.com/openimsdk/open-im-server/v3/tools/seq/internal" ) func main() { @@ -17,6 +19,8 @@ func main() { flag.Parse() if err := internal.Main(config, time.Duration(second)*time.Second); err != nil { fmt.Println("seq task", err) + os.Exit(1) + return } fmt.Println("seq task success!") }