more fixes!

This commit is contained in:
JackDoan
2026-07-13 18:55:44 -05:00
parent ee7d6cf90c
commit 7896f2093b
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)
}