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{}) dumpGoroutines(fileCreator{})
case syscall.SIGUSR2: case syscall.SIGUSR2:
profiler := StartProfile() profiler := StartProfile()
go func() { time.AfterFunc(profileDuration, profiler.Stop)
<-time.After(profileDuration)
profiler.Stop()
}()
case syscall.SIGTERM: case syscall.SIGTERM:
stopOnSignal() stopOnSignal()
gracefulStop(signals, syscall.SIGTERM) gracefulStop(signals, syscall.SIGTERM)

@ -50,7 +50,7 @@ func (sg *ServiceGroup) Add(service Service) {
// Also, quitting this method will close the logx output. // Also, quitting this method will close the logx output.
func (sg *ServiceGroup) Start() { func (sg *ServiceGroup) Start() {
proc.AddShutdownListener(func() { proc.AddShutdownListener(func() {
logx.Info("Shutting down service in group") logx.Info("Shutting down services in group")
sg.stopOnce() sg.stopOnce()
}) })

@ -6,7 +6,7 @@ import (
) )
// BuildVersion is the version of goctl. // 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} var tag = map[string]int{"pre-alpha": 0, "alpha": 1, "pre-bata": 2, "beta": 3, "released": 4, "": 5}

Loading…
Cancel
Save