Fix esvm looking for stage 0 enabled services

This commit is contained in:
2025-09-24 13:51:41 +03:00
parent 085bc676a0
commit 2b4feb60ec
+1 -1
View File
@@ -211,7 +211,7 @@ func Init() {
// Start enabled services
stages := slices.Collect(maps.Keys(EnabledServices))
slices.Sort(stages)
for stage := 0; stage <= stages[len(stages)-1]; stage++ {
for stage := 1; stage <= stages[len(stages)-1]; stage++ {
logger.Printf("Starting stage %d services...", stage)
services := EnabledServices[stage]