Results 1 issues of MisakiIc

![image](https://user-images.githubusercontent.com/28683154/180736384-583a35ad-6031-4117-9eca-7144a1a14bdc.png) 这段代码看意思是会执行AddShutdownListener()和AddWrapUpListener()注册的方法,但我这边测试时经常出现shutdownListeners.notifyListeners()不执行的情况, 经排查发现wrapUpListeners.notifyListeners()中执行了shutdown方法,取消了主程的阻塞,导致shutdownListeners.notifyListeners()没来得及执行 ![image](https://user-images.githubusercontent.com/28683154/180736080-11d8b7d8-e07f-48ad-be10-ae6eadf84ad5.png) 因为mian函数最后一行是server.Start(),到这里本以为问题就结束了 当我尝试注册更多的WrapUpListener时,发现无论如何主程都会等待所有的WrapUpListener执行结束再终止,而不是在执行完shutdown后立刻停止,这让我很困惑,代码如下: 按理说这个test不应该被打印 ```golang package main import ( "fmt" "github.com/zeromicro/go-zero/core/proc" "github.com/zeromicro/go-zero/rest" "syscall" "time" ) func main() { var c rest.RestConf c.Host = "0.0.0.0" c.Port = 8082...