コード例 #1
0
ファイル: config.go プロジェクト: The-Cloud-Source/opentsp
func Restart(shutdown func()) {
	cause := <-restartCause
	log.Printf("restarting... (%s)", cause)
	shutdown()
	restart.Do()
}
コード例 #2
0
ファイル: config.go プロジェクト: The-Cloud-Source/opentsp
func Restart() {
	cause := <-restartCause
	log.Printf("restarting... (%s)", cause)
	restart.Do()
}