Merge pull request #3120 from openimsdk/cherry-pick-7a1e347

fix: seq conversion failed without exiting [Created by @withchao from #3052]
This commit is contained in:
chao 2025-02-08 16:29:30 +08:00 committed by GitHub
commit dbe1575e73
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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!")
}