mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 09:00:20 +08:00
chore: upgrade otel, removed ut temporarily because of otel API changes (#3795)
This commit is contained in:
parent
431f9af43e
commit
83a776a190
@ -31,10 +31,7 @@ func init() {
|
||||
dumpGoroutines(fileCreator{})
|
||||
case syscall.SIGUSR2:
|
||||
profiler := StartProfile()
|
||||
go func() {
|
||||
<-time.After(profileDuration)
|
||||
profiler.Stop()
|
||||
}()
|
||||
time.AfterFunc(profileDuration, profiler.Stop)
|
||||
case syscall.SIGTERM:
|
||||
stopOnSignal()
|
||||
gracefulStop(signals, syscall.SIGTERM)
|
||||
|
@ -50,7 +50,7 @@ func (sg *ServiceGroup) Add(service Service) {
|
||||
// Also, quitting this method will close the logx output.
|
||||
func (sg *ServiceGroup) Start() {
|
||||
proc.AddShutdownListener(func() {
|
||||
logx.Info("Shutting down service in group")
|
||||
logx.Info("Shutting down services in group")
|
||||
sg.stopOnce()
|
||||
})
|
||||
|
||||
|
@ -6,7 +6,7 @@ import (
|
||||
)
|
||||
|
||||
// BuildVersion is the version of goctl.
|
||||
const BuildVersion = "1.6.0"
|
||||
const BuildVersion = "1.6.1"
|
||||
|
||||
var tag = map[string]int{"pre-alpha": 0, "alpha": 1, "pre-bata": 2, "beta": 3, "released": 4, "": 5}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user