chore: upgrade otel, removed ut temporarily because of otel API changes (#3795)

master
Kevin Wan 11 months ago committed by GitHub
parent 431f9af43e
commit 83a776a190
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save