more fixes!

This commit is contained in:
JackDoan
2026-07-13 18:55:44 -05:00
parent 1aca2f75ae
commit ae17513bbf
5 changed files with 34 additions and 21 deletions
+3 -2
View File
@@ -45,13 +45,14 @@ func (p *program) Start(s service.Service) error {
return err
}
if err := p.control.Start(); err != nil {
wait, err := p.control.Start()
if err != nil {
return err
}
// Nebula can stop itself on a fatal packet reader error, make sure to log it if it happens.
go func() {
if err := p.control.Wait(); err != nil {
if err := wait(); err != nil {
logger.Error(fmt.Sprintf("Nebula stopped due to fatal error: %v", err))
os.Exit(2)
}
+3 -2
View File
@@ -84,7 +84,8 @@ func main() {
}
if !*configTest {
if err := ctrl.Start(); err != nil {
wait, err := ctrl.Start()
if err != nil {
util.LogWithContextIfNeeded("Error while running", err, l)
os.Exit(1)
}
@@ -92,7 +93,7 @@ func main() {
go ctrl.ShutdownBlock()
notifyReady(l)
if err := ctrl.Wait(); err != nil {
if err := wait(); err != nil {
l.Error("Nebula stopped due to fatal error", "error", err)
os.Exit(2)
}